pub struct CloudWatchAlarm<C = Value, R = CloudWatchAlarmStateReasonData>{
    pub account_id: Option<String>,
    pub alarm_arn: Option<String>,
    pub source: Option<String>,
    pub region: Option<String>,
    pub time: DateTime<Utc>,
    pub alarm_data: CloudWatchAlarmData<C, R>,
}
Expand description

CloudWatchAlarm is the generic outer structure of an event triggered by a CloudWatch Alarm. You probably want to use CloudWatchMetricAlarm or CloudWatchCompositeAlarm if you know which kind of alarm your function is receiving. For examples of events that come via CloudWatch Alarms, see https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#Lambda-action-payload

Fields§

§account_id: Option<String>§alarm_arn: Option<String>§source: Option<String>§region: Option<String>§time: DateTime<Utc>§alarm_data: CloudWatchAlarmData<C, R>

Trait Implementations§

source§

impl<C, R> Clone for CloudWatchAlarm<C, R>

source§

fn clone(&self) -> CloudWatchAlarm<C, R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<C, R> Debug for CloudWatchAlarm<C, R>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C, R> Default for CloudWatchAlarm<C, R>

source§

fn default() -> CloudWatchAlarm<C, R>

Returns the “default value” for a type. Read more
source§

impl<'de, C, R> Deserialize<'de> for CloudWatchAlarm<C, R>

source§

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<C, R> PartialEq for CloudWatchAlarm<C, R>

source§

fn eq(&self, other: &CloudWatchAlarm<C, R>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<C, R> Serialize for CloudWatchAlarm<C, R>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<C, R> Eq for CloudWatchAlarm<C, R>

source§

impl<C, R> StructuralPartialEq for CloudWatchAlarm<C, R>

Auto Trait Implementations§

§

impl<C, R> RefUnwindSafe for CloudWatchAlarm<C, R>

§

impl<C, R> Send for CloudWatchAlarm<C, R>
where C: Send, R: Send,

§

impl<C, R> Sync for CloudWatchAlarm<C, R>
where C: Sync, R: Sync,

§

impl<C, R> Unpin for CloudWatchAlarm<C, R>
where C: Unpin, R: Unpin,

§

impl<C, R> UnwindSafe for CloudWatchAlarm<C, R>
where C: UnwindSafe, R: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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