Struct aws_lambda_events::event::cloudwatch_events::CloudWatchEvent
source · pub struct CloudWatchEvent<T1 = Value>where
T1: DeserializeOwned + Serialize,{
pub version: Option<String>,
pub id: Option<String>,
pub detail_type: Option<String>,
pub source: Option<String>,
pub account_id: Option<String>,
pub time: DateTime<Utc>,
pub region: Option<String>,
pub resources: Vec<String>,
pub detail: Option<T1>,
}Expand description
CloudWatchEvent is the outer structure of an event sent via CloudWatch Events.
For examples of events that come via CloudWatch Events, see https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/EventTypes.html
Fields§
§version: Option<String>§id: Option<String>§detail_type: Option<String>§source: Option<String>§account_id: Option<String>§time: DateTime<Utc>§region: Option<String>§resources: Vec<String>§detail: Option<T1>Trait Implementations§
source§impl<T1> Clone for CloudWatchEvent<T1>
impl<T1> Clone for CloudWatchEvent<T1>
source§fn clone(&self) -> CloudWatchEvent<T1>
fn clone(&self) -> CloudWatchEvent<T1>
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<T1> Debug for CloudWatchEvent<T1>
impl<T1> Debug for CloudWatchEvent<T1>
source§impl<'de, T1> Deserialize<'de> for CloudWatchEvent<T1>where
T1: DeserializeOwned + Serialize,
impl<'de, T1> Deserialize<'de> for CloudWatchEvent<T1>where
T1: DeserializeOwned + Serialize,
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<T1> PartialEq for CloudWatchEvent<T1>
impl<T1> PartialEq for CloudWatchEvent<T1>
source§fn eq(&self, other: &CloudWatchEvent<T1>) -> bool
fn eq(&self, other: &CloudWatchEvent<T1>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<T1> Serialize for CloudWatchEvent<T1>where
T1: DeserializeOwned + Serialize,
impl<T1> Serialize for CloudWatchEvent<T1>where
T1: DeserializeOwned + Serialize,
impl<T1> Eq for CloudWatchEvent<T1>
impl<T1> StructuralPartialEq for CloudWatchEvent<T1>where
T1: DeserializeOwned + Serialize,
Auto Trait Implementations§
impl<T1> RefUnwindSafe for CloudWatchEvent<T1>where
T1: RefUnwindSafe,
impl<T1> Send for CloudWatchEvent<T1>where
T1: Send,
impl<T1> Sync for CloudWatchEvent<T1>where
T1: Sync,
impl<T1> Unpin for CloudWatchEvent<T1>where
T1: Unpin,
impl<T1> UnwindSafe for CloudWatchEvent<T1>where
T1: UnwindSafe,
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