Struct rusoto_rekognition::SearchFacesByImageRequest [] [src]

pub struct SearchFacesByImageRequest {
    pub collection_id: String,
    pub face_match_threshold: Option<f32>,
    pub image: Image,
    pub max_faces: Option<i64>,
}

Fields

ID of the collection to search.

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

The input image as bytes or an S3 object.

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 SearchFacesByImageRequest
[src]

[src]

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

impl Debug for SearchFacesByImageRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SearchFacesByImageRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations