Struct rusoto_rekognition::DetectLabelsRequest[][src]

pub struct DetectLabelsRequest {
    pub image: Image,
    pub max_labels: Option<i64>,
    pub min_confidence: Option<f32>,
}

Fields

The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

Maximum number of labels you want the service to return in the response. The service returns the specified number of highest confidence labels.

Specifies the minimum confidence level for the labels to return. Amazon Rekognition doesn't return any labels with confidence lower than this specified value.

If MinConfidence is not specified, the operation returns labels with a confidence values greater than or equal to 50 percent.

Trait Implementations

impl Default for DetectLabelsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DetectLabelsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DetectLabelsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DetectLabelsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations