AWS Fundamentals Logo
AWS Fundamentals
AWS::Rekognition::StreamProcessor

Rekognition StreamProcessor

The AWS::Rekognition::StreamProcessor type is used to create an Amazon Rekognition StreamProcessor that you can use to analyze streaming videos.

Properties

13 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
KinesisVideoStream
KinesisVideoStream
RequiredCreate-only
RoleArn
string
RequiredCreate-only
BoundingBoxRegionsOfInterest
Array<BoundingBox>
Create-only
ConnectedHomeSettings
ConnectedHomeSettings
Create-only
DataSharingPreference
DataSharingPreference
Create-only
FaceSearchSettings
FaceSearchSettings
Create-only
KinesisDataStream
KinesisDataStream
Create-only
KmsKeyId
string
Create-only
Name
string
Create-only
NotificationChannel
NotificationChannel
Create-only
PolygonRegionsOfInterest
Array<array>
Create-only
S3Destination
S3Destination
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-
StatusstringCurrent status of the stream processor.
StatusMessagestringDetailed status message about the stream processor.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Rekognition::StreamProcessor

Resources:
  MyResource:
    Type: AWS::Rekognition::StreamProcessor
    Properties:
      RoleArn: "arn:aws:service:region:account:resource"
      KinesisVideoStream: "my-kinesisvideostream"
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

rekognition:CreateStreamProcessoriam:PassRolerekognition:DescribeStreamProcessorrekognition:ListTagsForResourcerekognition:TagResource

read

rekognition:DescribeStreamProcessorrekognition:ListTagsForResource

update

rekognition:TagResourcerekognition:UntagResourcerekognition:ListTagsForResourcerekognition:DescribeStreamProcessor

delete

rekognition:DeleteStreamProcessor

list

rekognition:ListStreamProcessors

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceRekognition
Properties16
Required2
TaggingSupported
Primary IDName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NameKmsKeyIdRoleArnKinesisVideoStreamConnectedHomeSettingsFaceSearchSettingsKinesisDataStreamS3DestinationNotificationChannelBoundingBoxRegionsOfInterestPolygonRegionsOfInterestDataSharingPreference

Related Resources

External Links