pub struct Builder { /* private fields */ }Expand description
A builder for StartFaceDetectionInput.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn video(self, input: Video) -> Self
pub fn video(self, input: Video) -> Self
The video in which you want to detect faces. The video must be stored in an Amazon S3 bucket.
sourcepub fn set_video(self, input: Option<Video>) -> Self
pub fn set_video(self, input: Option<Video>) -> Self
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, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
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 set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
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, input: NotificationChannel) -> Self
pub fn notification_channel(self, input: NotificationChannel) -> Self
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 set_notification_channel(self, input: Option<NotificationChannel>) -> Self
pub fn set_notification_channel(self, input: Option<NotificationChannel>) -> Self
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, input: FaceAttributes) -> Self
pub fn face_attributes(self, input: FaceAttributes) -> Self
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.
sourcepub fn set_face_attributes(self, input: Option<FaceAttributes>) -> Self
pub fn set_face_attributes(self, input: Option<FaceAttributes>) -> Self
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.
sourcepub fn job_tag(self, input: impl Into<String>) -> Self
pub fn job_tag(self, input: impl Into<String>) -> Self
An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic. For example, you can use JobTag to group related jobs and identify them in the completion notification.
sourcepub fn set_job_tag(self, input: Option<String>) -> Self
pub fn set_job_tag(self, input: Option<String>) -> Self
An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic. For example, you can use JobTag to group related jobs and identify them in the completion notification.
sourcepub fn build(self) -> Result<StartFaceDetectionInput, BuildError>
pub fn build(self) -> Result<StartFaceDetectionInput, BuildError>
Consumes the builder and constructs a StartFaceDetectionInput.