View a markdown version of this page

Add tags to a new stream processor - Amazon Rekognition

Add tags to a new stream processor

Note

Streaming Video and Bulk Image Analysis is no longer available to new customers. For more information, see Amazon Rekognition feature availability changes.

This change does not impact the availability of other Amazon Rekognition features.

You can identify, organize, search for, and filter Amazon Rekognition stream processors by using tags. Each tag is a label consisting of a user-defined key and value.

You can add tags to a stream processor as you create it using the CreateStreamProcessor operation. Specify one or more tags in the Tags array input parameter. The following is a JSON example for the CreateStreamProcessor request with tags.

{ "Name": "streamProcessorForCam", "Input": { "KinesisVideoStream": { "Arn": "arn:aws:kinesisvideo:us-east-1:nnnnnnnnnnnn:stream/inputVideo" } }, "Output": { "KinesisDataStream": { "Arn": "arn:aws:kinesis:us-east-1:nnnnnnnnnnnn:stream/outputData" } }, "RoleArn": "arn:aws:iam::nnnnnnnnnnn:role/roleWithKinesisPermission", "Settings": { "FaceSearch": { "CollectionId": "collection-with-100-faces", "FaceMatchThreshold": 85.5 }, "Tags": { "Dept": "Engineering", "Name": "Ana Silva Carolina", "Role": "Developer" } }