Struct rusoto_rekognition::StartPersonTrackingRequest[][src]

pub struct StartPersonTrackingRequest {
    pub client_request_token: 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 StartPersonTracking requests, the same JobId is returned. Use ClientRequestToken to prevent the same job from being accidently started more than once.

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

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

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

Trait Implementations

impl Default for StartPersonTrackingRequest
[src]

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

impl Debug for StartPersonTrackingRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartPersonTrackingRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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