Struct rusoto_rekognition::DetectLabelsRequest [] [src]

pub struct DetectLabelsRequest {
    pub image: Image,
    pub max_labels: Option<UInteger>,
    pub min_confidence: Option<Percent>,
}

Fields

The input image. You can provide a blob of image bytes or an S3 object.

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.

impl Clone for DetectLabelsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more