pub struct DescribeAlarmsInput {
pub action_prefix: Option<String>,
pub alarm_name_prefix: Option<String>,
pub alarm_names: Vec<String>,
pub alarm_types: Vec<AlarmType>,
pub children_of_alarm_name: Option<String>,
pub max_records: Option<i32>,
pub next_token: Option<String>,
pub parents_of_alarm_name: Option<String>,
pub state_value: Option<StateValue>,
}Expand description
CloudWatch DescribeAlarmsInput.
Fields§
§action_prefix: Option<String>§alarm_name_prefix: Option<String>§alarm_names: Vec<String>§alarm_types: Vec<AlarmType>§children_of_alarm_name: Option<String>§max_records: Option<i32>§next_token: Option<String>§parents_of_alarm_name: Option<String>§state_value: Option<StateValue>Trait Implementations§
Source§impl Clone for DescribeAlarmsInput
impl Clone for DescribeAlarmsInput
Source§fn clone(&self) -> DescribeAlarmsInput
fn clone(&self) -> DescribeAlarmsInput
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 DescribeAlarmsInput
impl Debug for DescribeAlarmsInput
Source§impl Default for DescribeAlarmsInput
impl Default for DescribeAlarmsInput
Source§fn default() -> DescribeAlarmsInput
fn default() -> DescribeAlarmsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeAlarmsInput
impl<'de> Deserialize<'de> for DescribeAlarmsInput
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 DescribeAlarmsInput
impl RefUnwindSafe for DescribeAlarmsInput
impl Send for DescribeAlarmsInput
impl Sync for DescribeAlarmsInput
impl Unpin for DescribeAlarmsInput
impl UnsafeUnpin for DescribeAlarmsInput
impl UnwindSafe for DescribeAlarmsInput
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