pub struct AddThingsToThingGroupParams {
pub override_dynamic_groups: Option<bool>,
pub thing_group_names: Vec<String>,
}Expand description
Parameters used when defining a mitigation action that move a set of things to a thing group.
Fields§
§override_dynamic_groups: Option<bool>Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic things groups.
thing_group_names: Vec<String>The list of groups to which you want to add the things that triggered the mitigation action. You can add a thing to a maximum of 10 groups, but you cannot add a thing to more than one group in the same hierarchy.
Trait Implementations§
Source§impl Clone for AddThingsToThingGroupParams
impl Clone for AddThingsToThingGroupParams
Source§fn clone(&self) -> AddThingsToThingGroupParams
fn clone(&self) -> AddThingsToThingGroupParams
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 AddThingsToThingGroupParams
impl Debug for AddThingsToThingGroupParams
Source§impl Default for AddThingsToThingGroupParams
impl Default for AddThingsToThingGroupParams
Source§fn default() -> AddThingsToThingGroupParams
fn default() -> AddThingsToThingGroupParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddThingsToThingGroupParams
impl<'de> Deserialize<'de> for AddThingsToThingGroupParams
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
impl StructuralPartialEq for AddThingsToThingGroupParams
Auto Trait Implementations§
impl Freeze for AddThingsToThingGroupParams
impl RefUnwindSafe for AddThingsToThingGroupParams
impl Send for AddThingsToThingGroupParams
impl Sync for AddThingsToThingGroupParams
impl Unpin for AddThingsToThingGroupParams
impl UnwindSafe for AddThingsToThingGroupParams
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