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§
§endpoint: Option<String>
The subscription's endpoint (format depends on the protocol).
protocol: Option<String>
The subscription's protocol.
Trait Implementations§
Source§impl Clone for AwsSnsTopicSubscription
impl Clone for AwsSnsTopicSubscription
Source§fn clone(&self) -> AwsSnsTopicSubscription
fn clone(&self) -> AwsSnsTopicSubscription
Returns a duplicate 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 Default for AwsSnsTopicSubscription
impl Default for AwsSnsTopicSubscription
Source§fn default() -> AwsSnsTopicSubscription
fn default() -> AwsSnsTopicSubscription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsSnsTopicSubscription
impl<'de> Deserialize<'de> for AwsSnsTopicSubscription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsSnsTopicSubscription
impl PartialEq for AwsSnsTopicSubscription
Source§impl Serialize for AwsSnsTopicSubscription
impl Serialize for AwsSnsTopicSubscription
impl StructuralPartialEq for AwsSnsTopicSubscription
Auto Trait Implementations§
impl Freeze for AwsSnsTopicSubscription
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