#[non_exhaustive]pub struct AwsSnsTopicSubscription {
pub endpoint: Option<String>,
pub protocol: Option<String>,
}
Expand description
A wrapper type for the attributes of an Amazon SNS subscription.
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.endpoint: Option<String>
The subscription's endpoint (format depends on the protocol).
protocol: Option<String>
The subscription's protocol.
Implementations§
source§impl AwsSnsTopicSubscription
impl AwsSnsTopicSubscription
sourcepub fn builder() -> AwsSnsTopicSubscriptionBuilder
pub fn builder() -> AwsSnsTopicSubscriptionBuilder
Creates a new builder-style object to manufacture AwsSnsTopicSubscription
.
Trait Implementations§
source§impl Clone for AwsSnsTopicSubscription
impl Clone for AwsSnsTopicSubscription
source§fn clone(&self) -> AwsSnsTopicSubscription
fn clone(&self) -> AwsSnsTopicSubscription
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 AwsSnsTopicSubscription
impl Debug for AwsSnsTopicSubscription
source§impl PartialEq for AwsSnsTopicSubscription
impl PartialEq for AwsSnsTopicSubscription
source§fn eq(&self, other: &AwsSnsTopicSubscription) -> bool
fn eq(&self, other: &AwsSnsTopicSubscription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsSnsTopicSubscription
Auto Trait Implementations§
impl RefUnwindSafe for AwsSnsTopicSubscription
impl Send for AwsSnsTopicSubscription
impl Sync for AwsSnsTopicSubscription
impl Unpin for AwsSnsTopicSubscription
impl UnwindSafe for AwsSnsTopicSubscription
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