#[non_exhaustive]pub struct StartLabelDetectionInput { /* private fields */ }Implementations
sourceimpl StartLabelDetectionInput
impl StartLabelDetectionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartLabelDetection, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartLabelDetection, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartLabelDetection>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartLabelDetectionInput.
sourceimpl StartLabelDetectionInput
impl StartLabelDetectionInput
sourcepub fn video(&self) -> Option<&Video>
pub fn video(&self) -> Option<&Video>
The video in which you want to detect labels. The video must be stored in an Amazon S3 bucket.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
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.
sourcepub fn min_confidence(&self) -> Option<f32>
pub fn min_confidence(&self) -> Option<f32>
Specifies the minimum confidence that Amazon 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. Amazon 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.
sourcepub fn notification_channel(&self) -> Option<&NotificationChannel>
pub fn notification_channel(&self) -> Option<&NotificationChannel>
The Amazon SNS topic ARN you want Amazon Rekognition Video to publish the completion status of the label detection operation to. The Amazon SNS topic must have a topic name that begins with AmazonRekognition if you are using the AmazonRekognitionServiceRole permissions policy.
Trait Implementations
sourceimpl Clone for StartLabelDetectionInput
impl Clone for StartLabelDetectionInput
sourcefn clone(&self) -> StartLabelDetectionInput
fn clone(&self) -> StartLabelDetectionInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more