Struct aws_sdk_sesv2::types::SnsDestination
source · #[non_exhaustive]pub struct SnsDestination {
pub topic_arn: String,
}Expand description
An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to send notification when certain email events occur.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.topic_arn: StringThe Amazon Resource Name (ARN) of the Amazon SNS topic to publish email events to. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
Implementations§
source§impl SnsDestination
impl SnsDestination
sourcepub fn topic_arn(&self) -> &str
pub fn topic_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Amazon SNS topic to publish email events to. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
source§impl SnsDestination
impl SnsDestination
sourcepub fn builder() -> SnsDestinationBuilder
pub fn builder() -> SnsDestinationBuilder
Creates a new builder-style object to manufacture SnsDestination.
Trait Implementations§
source§impl Clone for SnsDestination
impl Clone for SnsDestination
source§fn clone(&self) -> SnsDestination
fn clone(&self) -> SnsDestination
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 SnsDestination
impl Debug for SnsDestination
source§impl PartialEq for SnsDestination
impl PartialEq for SnsDestination
source§fn eq(&self, other: &SnsDestination) -> bool
fn eq(&self, other: &SnsDestination) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SnsDestination
Auto Trait Implementations§
impl RefUnwindSafe for SnsDestination
impl Send for SnsDestination
impl Sync for SnsDestination
impl Unpin for SnsDestination
impl UnwindSafe for SnsDestination
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.