Struct rusoto_rekognition::DetectFacesRequest [] [src]

pub struct DetectFacesRequest {
    pub attributes: Option<Attributes>,
    pub image: Image,
}

Fields

An array of facial attributes you want to be returned. This can be the default list of attributes or all attributes. If you don't specify a value for Attributes or if you specify ["DEFAULT"], the API returns the following subset of facial attributes: BoundingBox, Confidence, Pose, Quality and Landmarks. If you provide ["ALL"], all facial attributes are returned but the operation will take longer to complete.

If you provide both, ["ALL", "DEFAULT"], the service uses a logical AND operator to determine which attributes to return (in this case, all attributes).

The image in which you want to detect faces. You can specify a blob or an S3 object.

Trait Implementations

impl Default for DetectFacesRequest
[src]

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

impl Debug for DetectFacesRequest
[src]

Formats the value using the given formatter.

impl Clone for DetectFacesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more