Struct rusoto_rekognition::GetFaceSearchResponse[][src]

pub struct GetFaceSearchResponse {
    pub job_status: Option<String>,
    pub next_token: Option<String>,
    pub persons: Option<Vec<PersonMatch>>,
    pub status_message: Option<String>,
    pub video_metadata: Option<VideoMetadata>,
}

Fields

The current status of the face search job.

If the response is truncated, Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of search results.

An array of persons, , in the video whose face(s) match the face(s) in an Amazon Rekognition collection. It also includes time information for when persons are matched in the video. You specify the input collection in an initial call to StartFaceSearch. Each Persons element includes a time the person was matched, face match details (FaceMatches) for matching faces in the collection, and person information (Person) for the matched person.

If the job fails, StatusMessage provides a descriptive error message.

Information about a video that Amazon Rekognition analyzed. Videometadata is returned in every page of paginated responses from a Rekognition Video operation.

Trait Implementations

impl Default for GetFaceSearchResponse
[src]

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

impl Debug for GetFaceSearchResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetFaceSearchResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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