Struct rusoto_rekognition::SearchFacesRequest [] [src]

pub struct SearchFacesRequest {
    pub collection_id: String,
    pub face_id: String,
    pub face_match_threshold: Option<f32>,
    pub max_faces: Option<i64>,
}

Fields

ID of the collection the face belongs to.

ID of a face to find matches for in the collection.

Optional value specifying the minimum confidence in the face match to return. For example, don't return any matches where confidence in matches is less than 70%.

Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.

Trait Implementations

impl Default for SearchFacesRequest
[src]

[src]

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

impl Debug for SearchFacesRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SearchFacesRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations