Struct aws_sdk_rekognition::input::StartFaceSearchInput
source · [−]#[non_exhaustive]pub struct StartFaceSearchInput { /* private fields */ }Implementations
sourceimpl StartFaceSearchInput
impl StartFaceSearchInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartFaceSearch, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartFaceSearch, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartFaceSearch>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartFaceSearchInput.
sourceimpl StartFaceSearchInput
impl StartFaceSearchInput
sourcepub fn video(&self) -> Option<&Video>
pub fn video(&self) -> Option<&Video>
The video you want to search. 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 StartFaceSearch requests, the same JobId is returned. Use ClientRequestToken to prevent the same job from being accidently started more than once.
sourcepub fn face_match_threshold(&self) -> Option<f32>
pub fn face_match_threshold(&self) -> Option<f32>
The minimum confidence in the person match to return. For example, don't return any matches where confidence in matches is less than 70%. The default value is 80%.
sourcepub fn collection_id(&self) -> Option<&str>
pub fn collection_id(&self) -> Option<&str>
ID of the collection that contains the faces you want to search for.
sourcepub fn notification_channel(&self) -> Option<&NotificationChannel>
pub fn notification_channel(&self) -> Option<&NotificationChannel>
The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to publish the completion status of the search. The Amazon SNS topic must have a topic name that begins with AmazonRekognition if you are using the AmazonRekognitionServiceRole permissions policy to access the topic.
Trait Implementations
sourceimpl Clone for StartFaceSearchInput
impl Clone for StartFaceSearchInput
sourcefn clone(&self) -> StartFaceSearchInput
fn clone(&self) -> StartFaceSearchInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more