Struct aws_sdk_ses::operation::set_identity_notification_topic::SetIdentityNotificationTopicInput
source · #[non_exhaustive]pub struct SetIdentityNotificationTopicInput {
pub identity: Option<String>,
pub notification_type: Option<NotificationType>,
pub sns_topic: Option<String>,
}Expand description
Represents a request to specify the Amazon SNS topic to which Amazon SES publishes 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 (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.identity: Option<String>The identity (email address or domain) for the Amazon SNS topic.
You can only specify a verified identity for this parameter.
You can specify an identity by using its name or by using its Amazon Resource Name (ARN). The following examples are all valid identities: sender@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
notification_type: Option<NotificationType>The type of notifications that are published to the specified Amazon SNS topic.
sns_topic: Option<String>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.
Implementations§
source§impl SetIdentityNotificationTopicInput
impl SetIdentityNotificationTopicInput
sourcepub fn identity(&self) -> Option<&str>
pub fn identity(&self) -> Option<&str>
The identity (email address or domain) for the Amazon SNS topic.
You can only specify a verified identity for this parameter.
You can specify an identity by using its name or by using its Amazon Resource Name (ARN). The following examples are all valid identities: sender@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
sourcepub fn notification_type(&self) -> Option<&NotificationType>
pub fn notification_type(&self) -> Option<&NotificationType>
The type of notifications that are published to the specified Amazon SNS topic.
source§impl SetIdentityNotificationTopicInput
impl SetIdentityNotificationTopicInput
sourcepub fn builder() -> SetIdentityNotificationTopicInputBuilder
pub fn builder() -> SetIdentityNotificationTopicInputBuilder
Creates a new builder-style object to manufacture SetIdentityNotificationTopicInput.
Trait Implementations§
source§impl Clone for SetIdentityNotificationTopicInput
impl Clone for SetIdentityNotificationTopicInput
source§fn clone(&self) -> SetIdentityNotificationTopicInput
fn clone(&self) -> SetIdentityNotificationTopicInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for SetIdentityNotificationTopicInput
impl PartialEq for SetIdentityNotificationTopicInput
source§fn eq(&self, other: &SetIdentityNotificationTopicInput) -> bool
fn eq(&self, other: &SetIdentityNotificationTopicInput) -> bool
self and other values to be equal, and is used
by ==.