[][src]Struct aws_lambda_events::event::sns::SnsEntity

pub struct SnsEntity<T1 = Value> where
    T1: DeserializeOwned,
    T1: Serialize
{ pub signature: Option<String>, pub message_id: Option<String>, pub type_: Option<String>, pub topic_arn: Option<String>, pub message_attributes: HashMap<String, T1>, pub signature_version: Option<String>, pub timestamp: DateTime<Utc>, pub signing_cert_url: Option<String>, pub message: Option<String>, pub unsubscribe_url: Option<String>, pub subject: Option<String>, }

Fields

signature: Option<String>message_id: Option<String>type_: Option<String>topic_arn: Option<String>message_attributes: HashMap<String, T1>signature_version: Option<String>timestamp: DateTime<Utc>signing_cert_url: Option<String>message: Option<String>unsubscribe_url: Option<String>subject: Option<String>

Trait Implementations

impl<T1: PartialEq> PartialEq<SnsEntity<T1>> for SnsEntity<T1> where
    T1: DeserializeOwned,
    T1: Serialize
[src]

impl<T1: Clone> Clone for SnsEntity<T1> where
    T1: DeserializeOwned,
    T1: Serialize
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T1: Debug> Debug for SnsEntity<T1> where
    T1: DeserializeOwned,
    T1: Serialize
[src]

impl<T1> Serialize for SnsEntity<T1> where
    T1: DeserializeOwned,
    T1: Serialize
[src]

impl<'de, T1> Deserialize<'de> for SnsEntity<T1> where
    T1: DeserializeOwned,
    T1: Serialize,
    T1: Default
[src]

Auto Trait Implementations

impl<T1> Send for SnsEntity<T1> where
    T1: Send

impl<T1> Sync for SnsEntity<T1> where
    T1: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]