aws_sdk_sesv2/client/delete_suppressed_destination.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteSuppressedDestination`](crate::operation::delete_suppressed_destination::builders::DeleteSuppressedDestinationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`email_address(impl Into<String>)`](crate::operation::delete_suppressed_destination::builders::DeleteSuppressedDestinationFluentBuilder::email_address) / [`set_email_address(Option<String>)`](crate::operation::delete_suppressed_destination::builders::DeleteSuppressedDestinationFluentBuilder::set_email_address):<br>required: **true**<br><p>The suppressed email destination to remove from the account suppression list.</p><br>
7 /// - On success, responds with [`DeleteSuppressedDestinationOutput`](crate::operation::delete_suppressed_destination::DeleteSuppressedDestinationOutput)
8 /// - On failure, responds with [`SdkError<DeleteSuppressedDestinationError>`](crate::operation::delete_suppressed_destination::DeleteSuppressedDestinationError)
9 pub fn delete_suppressed_destination(
10 &self,
11 ) -> crate::operation::delete_suppressed_destination::builders::DeleteSuppressedDestinationFluentBuilder {
12 crate::operation::delete_suppressed_destination::builders::DeleteSuppressedDestinationFluentBuilder::new(self.handle.clone())
13 }
14}