Struct aws_sdk_ses::types::builders::SnsDestinationBuilder
source · #[non_exhaustive]pub struct SnsDestinationBuilder { /* private fields */ }Expand description
A builder for SnsDestination.
Implementations§
source§impl SnsDestinationBuilder
impl SnsDestinationBuilder
sourcepub fn topic_arn(self, input: impl Into<String>) -> Self
pub fn topic_arn(self, input: impl Into<String>) -> Self
The ARN of the Amazon SNS topic that email sending events will be published to. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
sourcepub fn set_topic_arn(self, input: Option<String>) -> Self
pub fn set_topic_arn(self, input: Option<String>) -> Self
The ARN of the Amazon SNS topic that email sending events will be published to. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
sourcepub fn build(self) -> SnsDestination
pub fn build(self) -> SnsDestination
Consumes the builder and constructs a SnsDestination.
Trait Implementations§
source§impl Clone for SnsDestinationBuilder
impl Clone for SnsDestinationBuilder
source§fn clone(&self) -> SnsDestinationBuilder
fn clone(&self) -> SnsDestinationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SnsDestinationBuilder
impl Debug for SnsDestinationBuilder
source§impl Default for SnsDestinationBuilder
impl Default for SnsDestinationBuilder
source§fn default() -> SnsDestinationBuilder
fn default() -> SnsDestinationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SnsDestinationBuilder> for SnsDestinationBuilder
impl PartialEq<SnsDestinationBuilder> for SnsDestinationBuilder
source§fn eq(&self, other: &SnsDestinationBuilder) -> bool
fn eq(&self, other: &SnsDestinationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SnsDestinationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SnsDestinationBuilder
impl Send for SnsDestinationBuilder
impl Sync for SnsDestinationBuilder
impl Unpin for SnsDestinationBuilder
impl UnwindSafe for SnsDestinationBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more