interface AwsRekognitionNodeParameters {
additionalFields?: {
attributes?: ("all" | "default")[];
maxLabels?: number;
minConfidence?: number;
regionsOfInterestUi?: {
regionsOfInterestValues: {
height?: number;
left?: number;
top?: number;
Width?: number;
}[];
};
version?: string;
wordFilterUi?: {
MinBoundingBoxHeight?: number;
MinBoundingBoxWidth?: number;
MinConfidence?: number;
};
};
authentication?: "iam"
| "assumeRole";
binaryData?: boolean;
binaryPropertyName?: string;
bucket?: string;
name?: string;
operation?: "analyze";
resource?: "image";
type?:
| "detectFaces"
| "detectLabels"
| "detectModerationLabels"
| "detectText"
| "recognizeCelebrity";
}
Properties§
§
§
§
§
§
§
§
§
§
readonly additional Fields?: { ... }
readonly authentication?: "iam" | "assumeRole"
Default: "iam"
readonly binary Data?: boolean
Whether the image to analyze should be taken from binary field
readonly binary Property Name?: string
Default: "data"
readonly bucket?: string
Name of the S3 bucket
readonly name?: string
S3 object key name
readonly operation?: "analyze"
Default: "analyze"
readonly resource?: "image"
Default: "image"
readonly type?:
| "detectFaces"
| "detectLabels"
| "detectModerationLabels"
| "detectText"
| "recognizeCelebrity"
Default: "detectFaces"
Default: {}