aws-cdk-lib.aws_rekognition.CfnStreamProcessor.FaceSearchSettingsProperty

interface FaceSearchSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.Rekognition.CfnStreamProcessor.FaceSearchSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrekognition#CfnStreamProcessor_FaceSearchSettingsProperty
Javasoftware.amazon.awscdk.services.rekognition.CfnStreamProcessor.FaceSearchSettingsProperty
Pythonaws_cdk.aws_rekognition.CfnStreamProcessor.FaceSearchSettingsProperty
TypeScript aws-cdk-lib » aws_rekognition » CfnStreamProcessor » FaceSearchSettingsProperty

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 { aws_rekognition as rekognition } from 'aws-cdk-lib';
const faceSearchSettingsProperty: rekognition.CfnStreamProcessor.FaceSearchSettingsProperty = {
  collectionId: 'collectionId',

  // the properties below are optional
  faceMatchThreshold: 123,
};

Properties

NameTypeDescription
collectionIdstringThe ID of a collection that contains faces that you want to search for.
faceMatchThreshold?numberMinimum face match confidence score that must be met to return a result for a recognized face.

collectionId

Type: string

The ID of a collection that contains faces that you want to search for.


faceMatchThreshold?

Type: number (optional)

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.