pub struct SetAlarmStateInput {
pub alarm_name: String,
pub state_reason: String,
pub state_reason_data: Option<String>,
pub state_value: StateValue,
}Expand description
CloudWatch SetAlarmStateInput.
Fields§
§alarm_name: String§state_reason: String§state_reason_data: Option<String>§state_value: StateValueTrait Implementations§
Source§impl Clone for SetAlarmStateInput
impl Clone for SetAlarmStateInput
Source§fn clone(&self) -> SetAlarmStateInput
fn clone(&self) -> SetAlarmStateInput
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 SetAlarmStateInput
impl Debug for SetAlarmStateInput
Source§impl Default for SetAlarmStateInput
impl Default for SetAlarmStateInput
Source§fn default() -> SetAlarmStateInput
fn default() -> SetAlarmStateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetAlarmStateInput
impl<'de> Deserialize<'de> for SetAlarmStateInput
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 SetAlarmStateInput
impl RefUnwindSafe for SetAlarmStateInput
impl Send for SetAlarmStateInput
impl Sync for SetAlarmStateInput
impl Unpin for SetAlarmStateInput
impl UnsafeUnpin for SetAlarmStateInput
impl UnwindSafe for SetAlarmStateInput
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