Interface CfnStreamProcessor.FaceSearchSettingsProperty

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

@Stability(Stable) public static interface CfnStreamProcessor.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.services.rekognition.*;
 FaceSearchSettingsProperty faceSearchSettingsProperty = FaceSearchSettingsProperty.builder()
         .collectionId("collectionId")
         // the properties below are optional
         .faceMatchThreshold(123)
         .build();
 

See Also: