Interface AwsRekognitionNodeParameters

Source
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;
        };
    };
    binaryData?: boolean;
    binaryPropertyName?: string;
    bucket?: string;
    name?: string;
    operation?: "analyze";
    resource?: "image";
    type?: | "detectFaces"
    | "detectLabels"
    | "detectModerationLabels"
    | "detectText"
    | "recognizeCelebrity";
}

Properties§

Source§

readonly 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;
    };
}

Default: {}

Source§

readonly binaryData?: boolean

Whether the image to analyze should be taken from binary field

Source§

readonly binaryPropertyName?: string

Default: "data"

Source§

readonly bucket?: string

Name of the S3 bucket

Source§

readonly name?: string

S3 object key name

Source§

readonly operation?: "analyze"

Default: "analyze"

Source§

readonly resource?: "image"

Default: "image"

Source§

readonly type?:
    | "detectFaces"
    | "detectLabels"
    | "detectModerationLabels"
    | "detectText"
    | "recognizeCelebrity"

Default: "detectFaces"