Struct rusoto_rekognition::StartLabelDetectionRequest[][src]

pub struct StartLabelDetectionRequest {
    pub client_request_token: Option<String>,
    pub job_tag: Option<String>,
    pub min_confidence: Option<f32>,
    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 StartLabelDetection 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.

Specifies the minimum confidence that Rekognition Video must have in order to return a detected label. Confidence represents how certain Amazon Rekognition is that a label is correctly identified.0 is the lowest confidence. 100 is the highest confidence. Rekognition Video doesn't return any labels with a confidence level lower than this specified value.

If you don't specify MinConfidence, the operation returns labels with confidence values greater than or equal to 50 percent.

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

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

Trait Implementations

impl Default for StartLabelDetectionRequest
[src]

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

impl Debug for StartLabelDetectionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartLabelDetectionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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