Struct rusoto_ses::SNSDestination[][src]

pub struct SNSDestination {
    pub topic_arn: String,
}

Contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.

Event destinations, such as Amazon SNS, are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

The ARN of the Amazon SNS topic that email sending events will be published to. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.

Trait Implementations

impl Default for SNSDestination
[src]

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

impl Debug for SNSDestination
[src]

Formats the value using the given formatter. Read more

impl Clone for SNSDestination
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SNSDestination
[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