Struct rusoto_rekognition::NotificationChannel[][src]

pub struct NotificationChannel {
    pub role_arn: String,
    pub sns_topic_arn: String,
}

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.

Fields

The ARN of an IAM role that gives Amazon Rekognition publishing permissions to the Amazon SNS topic.

The Amazon SNS topic to which Amazon Rekognition to posts the completion status.

Trait Implementations

impl Default for NotificationChannel
[src]

Returns the "default value" for a type. Read more

impl Debug for NotificationChannel
[src]

Formats the value using the given formatter. Read more

impl Clone for NotificationChannel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NotificationChannel
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations