pub struct SetIdentityNotificationTopic { /* private fields */ }
Expand description
Fluent builder constructing a request to SetIdentityNotificationTopic
.
Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use this operation, you specify a verified identity, such as an email address or domain. When you send an email that uses the chosen identity in the Source field, Amazon SES sends notifications to the topic you specified. You can send bounce, complaint, or delivery notifications (or any combination of the three) to the Amazon SNS topic that you specify.
You can execute this operation no more than once per second.
For more information about feedback notification, see the Amazon SES Developer Guide.
Implementations§
source§impl SetIdentityNotificationTopic
impl SetIdentityNotificationTopic
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<SetIdentityNotificationTopic, AwsResponseRetryClassifier>, SdkError<SetIdentityNotificationTopicError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<SetIdentityNotificationTopic, AwsResponseRetryClassifier>, SdkError<SetIdentityNotificationTopicError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<SetIdentityNotificationTopicOutput, SdkError<SetIdentityNotificationTopicError>>
pub async fn send(
self
) -> Result<SetIdentityNotificationTopicOutput, SdkError<SetIdentityNotificationTopicError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn identity(self, input: impl Into<String>) -> Self
pub fn identity(self, input: impl Into<String>) -> Self
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 set_identity(self, input: Option<String>) -> Self
pub fn set_identity(self, input: Option<String>) -> Self
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, input: NotificationType) -> Self
pub fn notification_type(self, input: NotificationType) -> Self
The type of notifications that will be published to the specified Amazon SNS topic.
sourcepub fn set_notification_type(self, input: Option<NotificationType>) -> Self
pub fn set_notification_type(self, input: Option<NotificationType>) -> Self
The type of notifications that will be published to the specified Amazon SNS topic.
sourcepub fn sns_topic(self, input: impl Into<String>) -> Self
pub fn sns_topic(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_sns_topic(self, input: Option<String>) -> Self
pub fn set_sns_topic(self, input: Option<String>) -> Self
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§
source§impl Clone for SetIdentityNotificationTopic
impl Clone for SetIdentityNotificationTopic
source§fn clone(&self) -> SetIdentityNotificationTopic
fn clone(&self) -> SetIdentityNotificationTopic
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more