interface AwsComprehendNodeParameters {
additionalFields?: { endpointArn?: string };
authentication?: "iam" | "assumeRole";
languageCode?:
| "en"
| "fr"
| "de"
| "ja"
| "pt"
| "es"
| "ar"
| "zh"
| "zh-TW"
| "hi"
| "it"
| "ko";
operation?: | "detectDominantLanguage"
| "detectEntities"
| "detectSentiment";
resource?: "text";
simple?: boolean;
text?: string;
}Properties§
§§§§§§
readonly additional Fields?: { ... }§
readonly authentication?: "iam" | "assumeRole"Default: "iam"
readonly language Code?:
| "en"
| "fr"
| "de"
| "ja"
| "pt"
| "es"
| "ar"
| "zh"
| "zh-TW"
| "hi"
| "it"
| "ko"The language code for text Default: "en"
readonly operation?:
| "detectDominantLanguage"
| "detectEntities"
| "detectSentiment"Default: "detectDominantLanguage"
readonly resource?: "text"The resource to perform Default: "text"
readonly simple?: booleanWhether to return a simplified version of the response instead of the raw data Default: true
readonly text?: stringThe text to send
Default: {}