Interface CfnStreamProcessorPropsMixin.FaceSearchSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStreamProcessorPropsMixin.FaceSearchSettingsProperty.Jsii$Proxy
Enclosing class:
CfnStreamProcessorPropsMixin

@Stability(Stable) public static interface CfnStreamProcessorPropsMixin.FaceSearchSettingsProperty extends software.amazon.jsii.JsiiSerializable
The input parameters used to recognize faces in a streaming video analyzed by a Amazon Rekognition stream processor.

FaceSearchSettings is a request parameter for CreateStreamProcessor . For more information, see FaceSearchSettings .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.rekognition.mixins.*;
 FaceSearchSettingsProperty faceSearchSettingsProperty = FaceSearchSettingsProperty.builder()
         .collectionId("collectionId")
         .faceMatchThreshold(123)
         .build();
 

See Also: