pub struct AddThingToThingGroupRequest {
pub override_dynamic_groups: Option<bool>,
pub thing_arn: Option<String>,
pub thing_group_arn: Option<String>,
pub thing_group_name: Option<String>,
pub thing_name: Option<String>,
}Fields§
§override_dynamic_groups: Option<bool>Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.
thing_arn: Option<String>The ARN of the thing to add to a group.
thing_group_arn: Option<String>The ARN of the group to which you are adding a thing.
thing_group_name: Option<String>The name of the group to which you are adding a thing.
thing_name: Option<String>The name of the thing to add to a group.
Trait Implementations§
Source§impl Clone for AddThingToThingGroupRequest
impl Clone for AddThingToThingGroupRequest
Source§fn clone(&self) -> AddThingToThingGroupRequest
fn clone(&self) -> AddThingToThingGroupRequest
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 AddThingToThingGroupRequest
impl Debug for AddThingToThingGroupRequest
Source§impl Default for AddThingToThingGroupRequest
impl Default for AddThingToThingGroupRequest
Source§fn default() -> AddThingToThingGroupRequest
fn default() -> AddThingToThingGroupRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AddThingToThingGroupRequest
Auto Trait Implementations§
impl Freeze for AddThingToThingGroupRequest
impl RefUnwindSafe for AddThingToThingGroupRequest
impl Send for AddThingToThingGroupRequest
impl Sync for AddThingToThingGroupRequest
impl Unpin for AddThingToThingGroupRequest
impl UnwindSafe for AddThingToThingGroupRequest
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