pub struct AlarmHistoryItem {
pub alarm_contributor_attributes: HashMap<String, String>,
pub alarm_contributor_id: Option<String>,
pub alarm_name: Option<String>,
pub alarm_type: Option<AlarmType>,
pub history_data: Option<String>,
pub history_item_type: Option<HistoryItemType>,
pub history_summary: Option<String>,
pub timestamp: Option<DateTime<Utc>>,
}Expand description
CloudWatch AlarmHistoryItem.
Fields§
§alarm_contributor_attributes: HashMap<String, String>§alarm_contributor_id: Option<String>§alarm_name: Option<String>§alarm_type: Option<AlarmType>§history_data: Option<String>§history_item_type: Option<HistoryItemType>§history_summary: Option<String>§timestamp: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for AlarmHistoryItem
impl Clone for AlarmHistoryItem
Source§fn clone(&self) -> AlarmHistoryItem
fn clone(&self) -> AlarmHistoryItem
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 AlarmHistoryItem
impl Debug for AlarmHistoryItem
Source§impl Default for AlarmHistoryItem
impl Default for AlarmHistoryItem
Source§fn default() -> AlarmHistoryItem
fn default() -> AlarmHistoryItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlarmHistoryItem
impl<'de> Deserialize<'de> for AlarmHistoryItem
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
Auto Trait Implementations§
impl Freeze for AlarmHistoryItem
impl RefUnwindSafe for AlarmHistoryItem
impl Send for AlarmHistoryItem
impl Sync for AlarmHistoryItem
impl Unpin for AlarmHistoryItem
impl UnsafeUnpin for AlarmHistoryItem
impl UnwindSafe for AlarmHistoryItem
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