Struct rusoto_rekognition::GetContentModerationRequest[][src]

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

Fields

The identifier for the content moderation job. Use JobId to identify the job in a subsequent call to GetContentModeration.

Maximum number of content moderation labels to return. The default is 1000.

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

Sort to use for elements in the ModerationLabelDetections 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 GetContentModerationRequest
[src]

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

impl Debug for GetContentModerationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetContentModerationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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