[][src]Struct rusoto_rekognition::StartCelebrityRecognitionRequest

pub struct StartCelebrityRecognitionRequest {
    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 StartCelebrityRecognition 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 that you want Amazon Rekognition Video to publish the completion status of the celebrity recognition analysis to.

The video in which you want to recognize celebrities. The video must be stored in an Amazon S3 bucket.

Trait Implementations

impl Clone for StartCelebrityRecognitionRequest
[src]

Performs copy-assignment from source. Read more

impl Default for StartCelebrityRecognitionRequest
[src]

impl PartialEq<StartCelebrityRecognitionRequest> for StartCelebrityRecognitionRequest
[src]

impl Debug for StartCelebrityRecognitionRequest
[src]

impl Serialize for StartCelebrityRecognitionRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T