Struct aws_sdk_rekognition::input::StartFaceDetectionInput
source · [−]#[non_exhaustive]pub struct StartFaceDetectionInput { /* private fields */ }Implementations
sourceimpl StartFaceDetectionInput
impl StartFaceDetectionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartFaceDetection, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartFaceDetection, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartFaceDetection>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartFaceDetectionInput.
sourceimpl StartFaceDetectionInput
impl StartFaceDetectionInput
sourcepub fn video(&self) -> Option<&Video>
pub fn video(&self) -> Option<&Video>
The video in which you want to detect faces. 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 StartFaceDetection requests, the same JobId is returned. Use ClientRequestToken to prevent the same job from being accidently started more than once.
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 face detection operation. The Amazon SNS topic must have a topic name that begins with AmazonRekognition if you are using the AmazonRekognitionServiceRole permissions policy.
sourcepub fn face_attributes(&self) -> Option<&FaceAttributes>
pub fn face_attributes(&self) -> Option<&FaceAttributes>
The face attributes you want returned.
DEFAULT - The following subset of facial attributes are returned: BoundingBox, Confidence, Pose, Quality and Landmarks.
ALL - All facial attributes are returned.
Trait Implementations
sourceimpl Clone for StartFaceDetectionInput
impl Clone for StartFaceDetectionInput
sourcefn clone(&self) -> StartFaceDetectionInput
fn clone(&self) -> StartFaceDetectionInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more