Struct rusoto_rekognition::StartFaceDetectionRequest[][src]

pub struct StartFaceDetectionRequest {
    pub client_request_token: Option<String>,
    pub face_attributes: Option<String>,
    pub job_tag: Option<String>,
    pub notification_channel: Option<NotificationChannel>,
    pub video: Video,
}

Fields

Idempotent token used to identify the start request. If you use the same token with multiple StartFaceDetection requests, the same JobId is returned. Use ClientRequestToken to prevent the same job from being accidently started more than once.

The face attributes you want returned.

DEFAULT - The following subset of facial attributes are returned: BoundingBox, Confidence, Pose, Quality and Landmarks.

ALL - All facial attributes are returned.

Unique identifier you specify to identify the job in the completion status published to the Amazon Simple Notification Service topic.

The ARN of the Amazon SNS topic to which you want Rekognition Video to publish the completion status of the face detection operation.

The video in which you want to detect faces. The video must be stored in an Amazon S3 bucket.

Trait Implementations

impl Default for StartFaceDetectionRequest
[src]

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

impl Debug for StartFaceDetectionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartFaceDetectionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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