interface NotificationChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Rekognition.Mixins.CfnStreamProcessorPropsMixin.NotificationChannelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrekognition/mixins#CfnStreamProcessorPropsMixin_NotificationChannelProperty |
Java | software.amazon.awscdk.mixins.preview.services.rekognition.mixins.CfnStreamProcessorPropsMixin.NotificationChannelProperty |
Python | aws_cdk.mixins_preview.aws_rekognition.mixins.CfnStreamProcessorPropsMixin.NotificationChannelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rekognition » mixins » 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 { mixins as rekognition_mixins } from '@aws-cdk/mixins-preview/aws-rekognition';
const notificationChannelProperty: rekognition_mixins.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