#[non_exhaustive]pub struct AddThingToThingGroupInput {
pub thing_group_name: Option<String>,
pub thing_group_arn: Option<String>,
pub thing_name: Option<String>,
pub thing_arn: Option<String>,
pub override_dynamic_groups: Option<bool>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.thing_group_name: Option<String>The name of the group to which you are adding a thing.
thing_group_arn: Option<String>The ARN of the group to which you are adding a thing.
thing_name: Option<String>The name of the thing to add to a group.
thing_arn: Option<String>The ARN of the thing to add to a group.
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.
Implementations§
source§impl AddThingToThingGroupInput
impl AddThingToThingGroupInput
sourcepub fn thing_group_name(&self) -> Option<&str>
pub fn thing_group_name(&self) -> Option<&str>
The name of the group to which you are adding a thing.
sourcepub fn thing_group_arn(&self) -> Option<&str>
pub fn thing_group_arn(&self) -> Option<&str>
The ARN of the group to which you are adding a thing.
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing to add to a group.
sourcepub fn override_dynamic_groups(&self) -> Option<bool>
pub fn override_dynamic_groups(&self) -> 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.
source§impl AddThingToThingGroupInput
impl AddThingToThingGroupInput
sourcepub fn builder() -> AddThingToThingGroupInputBuilder
pub fn builder() -> AddThingToThingGroupInputBuilder
Creates a new builder-style object to manufacture AddThingToThingGroupInput.
Trait Implementations§
source§impl Clone for AddThingToThingGroupInput
impl Clone for AddThingToThingGroupInput
source§fn clone(&self) -> AddThingToThingGroupInput
fn clone(&self) -> AddThingToThingGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AddThingToThingGroupInput
impl Debug for AddThingToThingGroupInput
source§impl PartialEq for AddThingToThingGroupInput
impl PartialEq for AddThingToThingGroupInput
source§fn eq(&self, other: &AddThingToThingGroupInput) -> bool
fn eq(&self, other: &AddThingToThingGroupInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AddThingToThingGroupInput
Auto Trait Implementations§
impl Freeze for AddThingToThingGroupInput
impl RefUnwindSafe for AddThingToThingGroupInput
impl Send for AddThingToThingGroupInput
impl Sync for AddThingToThingGroupInput
impl Unpin for AddThingToThingGroupInput
impl UnwindSafe for AddThingToThingGroupInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more