Struct rusoto_rekognition::GetFaceSearchRequest[][src]

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

Fields

The job identifer for the search request. You get the job identifier from an initial call to StartFaceSearch.

Maximum number of search results you want Rekognition Video to return in the response. The default is 1000.

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

Sort to use for grouping faces in the response. Use TIMESTAMP to group faces by the time that they are recognized. Use INDEX to sort by recognized faces.

Trait Implementations

impl Default for GetFaceSearchRequest
[src]

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

impl Debug for GetFaceSearchRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetFaceSearchRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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