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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamProcessor.FaceSearchSettingsPropertystatic final classAn implementation forCfnStreamProcessor.FaceSearchSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollectionId
The ID of a collection that contains faces that you want to search for.- See Also:
-
getFaceMatchThreshold
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.
- See Also:
-
builder
-