interface NotificationChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Rekognition.CfnStreamProcessorPropsMixin.NotificationChannelProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrekognition#CfnStreamProcessorPropsMixin_NotificationChannelProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rekognition.CfnStreamProcessorPropsMixin.NotificationChannelProperty |
Python | aws_cdk.cfn_property_mixins.aws_rekognition.CfnStreamProcessorPropsMixin.NotificationChannelProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rekognition » CfnStreamProcessorPropsMixin » NotificationChannelProperty |
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.
Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
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/cfn-property-mixins';
const notificationChannelProperty: rekognition.CfnStreamProcessorPropsMixin.NotificationChannelProperty = {
arn: 'arn',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The ARN of the SNS topic that receives notifications. |
arn?
Type:
string
(optional)
The ARN of the SNS topic that receives notifications.

.NET
Go
Java
Python
TypeScript