Struct rusoto_ses::SetIdentityNotificationTopicRequest [] [src]

pub struct SetIdentityNotificationTopicRequest {
    pub identity: String,
    pub notification_type: String,
    pub sns_topic: Option<String>,
}

Represents a request to specify the Amazon SNS topic to which Amazon SES will publish bounce, complaint, or delivery notifications for emails sent with that identity as the Source. For information about Amazon SES notifications, see the Amazon SES Developer Guide.

Fields

The identity for which the Amazon SNS topic will be set. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

The type of notifications that will be published to the specified Amazon SNS topic.

The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is omitted from the request or a null value is passed, SnsTopic is cleared and publishing is disabled.

Trait Implementations

impl Default for SetIdentityNotificationTopicRequest
[src]

[src]

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

impl Debug for SetIdentityNotificationTopicRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SetIdentityNotificationTopicRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations