Struct aws_sdk_rekognition::model::FaceSearchSettings
source · [−]#[non_exhaustive]pub struct FaceSearchSettings { /* private fields */ }Expand description
Input face recognition parameters for an Amazon Rekognition stream processor. Includes the collection to use for face recognition and the face attributes to detect. Defining the settings is required in the request parameter for CreateStreamProcessor.
Implementations
sourceimpl FaceSearchSettings
impl FaceSearchSettings
sourcepub fn collection_id(&self) -> Option<&str>
pub fn collection_id(&self) -> Option<&str>
The ID of a collection that contains faces that you want to search for.
sourcepub fn face_match_threshold(&self) -> Option<f32>
pub fn face_match_threshold(&self) -> Option<f32>
Minimum face match confidence score that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted, and values lower than 80 are set to 80.
sourceimpl FaceSearchSettings
impl FaceSearchSettings
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FaceSearchSettings.
Trait Implementations
sourceimpl Clone for FaceSearchSettings
impl Clone for FaceSearchSettings
sourcefn clone(&self) -> FaceSearchSettings
fn clone(&self) -> FaceSearchSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FaceSearchSettings
impl Debug for FaceSearchSettings
sourceimpl PartialEq<FaceSearchSettings> for FaceSearchSettings
impl PartialEq<FaceSearchSettings> for FaceSearchSettings
sourcefn eq(&self, other: &FaceSearchSettings) -> bool
fn eq(&self, other: &FaceSearchSettings) -> bool
impl StructuralPartialEq for FaceSearchSettings
Auto Trait Implementations
impl RefUnwindSafe for FaceSearchSettings
impl Send for FaceSearchSettings
impl Sync for FaceSearchSettings
impl Unpin for FaceSearchSettings
impl UnwindSafe for FaceSearchSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more