Struct rusoto_rekognition::GetLabelDetectionRequest[][src]

pub struct GetLabelDetectionRequest {
    pub job_id: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub sort_by: Option<String>,
}

Fields

Job identifier for the label detection operation for which you want results returned. You get the job identifer from an initial call to StartlabelDetection.

Maximum number of labels you want Amazon Rekognition to return in the response. The default is 1000.

If the previous response was incomplete (because there are more labels to retrieve), Rekognition Video returns a pagination token in the response. You can use this pagination token to retrieve the next set of labels.

Sort to use for elements in the Labels array. Use TIMESTAMP to sort array elements by the time labels are detected. Use NAME to alphabetically group elements for a label together. Within each label group, the array element are sorted by detection confidence. The default sort is by TIMESTAMP.

Trait Implementations

impl Default for GetLabelDetectionRequest
[src]

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

impl Debug for GetLabelDetectionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetLabelDetectionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetLabelDetectionRequest
[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