Struct rusoto_rekognition::DetectFacesRequest[][src]

pub struct DetectFacesRequest {
    pub attributes: Option<Vec<String>>,
    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 input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.

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. Read more

impl Clone for DetectFacesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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