#[non_exhaustive]pub struct SetIdentityNotificationTopicInput { /* private fields */ }
Expand description
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.
Implementations§
source§impl SetIdentityNotificationTopicInput
impl SetIdentityNotificationTopicInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SetIdentityNotificationTopic, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SetIdentityNotificationTopic, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SetIdentityNotificationTopic
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SetIdentityNotificationTopicInput
.
source§impl SetIdentityNotificationTopicInput
impl SetIdentityNotificationTopicInput
sourcepub fn identity(&self) -> Option<&str>
pub fn identity(&self) -> Option<&str>
The identity (email address or domain) that you want to set the Amazon SNS topic for.
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 will be published to the specified Amazon SNS topic.
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<SetIdentityNotificationTopicInput> for SetIdentityNotificationTopicInput
impl PartialEq<SetIdentityNotificationTopicInput> 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 ==
.