@Stability(value=Stable)
public static interface CfnStreamProcessor.FaceSearchSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStreamProcessor.FaceSearchSettingsProperty.Builder
A builder for
CfnStreamProcessor.FaceSearchSettingsProperty |
static class |
CfnStreamProcessor.FaceSearchSettingsProperty.Jsii$Proxy
An implementation for
CfnStreamProcessor.FaceSearchSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnStreamProcessor.FaceSearchSettingsProperty.Builder |
builder() |
String |
getCollectionId()
The ID of a collection that contains faces that you want to search for.
|
default Number |
getFaceMatchThreshold()
Minimum face match confidence score that must be met to return a result for a recognized face.
|
@Stability(value=Stable) @NotNull String getCollectionId()
@Stability(value=Stable) @Nullable default Number getFaceMatchThreshold()
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.
@Stability(value=Stable) static CfnStreamProcessor.FaceSearchSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.