Struct aws_sdk_iot::input::UpdateThingGroupsForThingInput
source · #[non_exhaustive]pub struct UpdateThingGroupsForThingInput { /* private fields */ }
Implementations§
source§impl UpdateThingGroupsForThingInput
impl UpdateThingGroupsForThingInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThingGroupsForThing, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThingGroupsForThing, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateThingGroupsForThing
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateThingGroupsForThingInput
.
source§impl UpdateThingGroupsForThingInput
impl UpdateThingGroupsForThingInput
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The thing whose group memberships will be updated.
sourcepub fn thing_groups_to_add(&self) -> Option<&[String]>
pub fn thing_groups_to_add(&self) -> Option<&[String]>
The groups to which the thing will be added.
sourcepub fn thing_groups_to_remove(&self) -> Option<&[String]>
pub fn thing_groups_to_remove(&self) -> Option<&[String]>
The groups from which the thing will be removed.
sourcepub fn override_dynamic_groups(&self) -> bool
pub fn override_dynamic_groups(&self) -> 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.
Trait Implementations§
source§impl Clone for UpdateThingGroupsForThingInput
impl Clone for UpdateThingGroupsForThingInput
source§fn clone(&self) -> UpdateThingGroupsForThingInput
fn clone(&self) -> UpdateThingGroupsForThingInput
Returns a copy 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 PartialEq<UpdateThingGroupsForThingInput> for UpdateThingGroupsForThingInput
impl PartialEq<UpdateThingGroupsForThingInput> for UpdateThingGroupsForThingInput
source§fn eq(&self, other: &UpdateThingGroupsForThingInput) -> bool
fn eq(&self, other: &UpdateThingGroupsForThingInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.