Class: Aws::Rekognition::Types::NotificationChannel
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::NotificationChannel
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass NotificationChannel data as a hash:
{
sns_topic_arn: "SNSTopicArn", # required
role_arn: "RoleArn", # required
}
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the completion status of a video analysis operation. For more information, see api-video.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_arn ⇒ String
The ARN of an IAM role that gives Amazon Rekognition publishing permissions to the Amazon SNS topic.
-
#sns_topic_arn ⇒ String
The Amazon SNS topic to which Amazon Rekognition to posts the completion status.
Instance Attribute Details
#role_arn ⇒ String
The ARN of an IAM role that gives Amazon Rekognition publishing permissions to the Amazon SNS topic.
3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3588 class NotificationChannel < Struct.new( :sns_topic_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#sns_topic_arn ⇒ String
The Amazon SNS topic to which Amazon Rekognition to posts the completion status.
3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3588 class NotificationChannel < Struct.new( :sns_topic_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |