Struct aws_sdk_iot::input::AddThingToThingGroupInput
source · #[non_exhaustive]pub struct AddThingToThingGroupInput { /* private fields */ }
Implementations§
source§impl AddThingToThingGroupInput
impl AddThingToThingGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddThingToThingGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddThingToThingGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AddThingToThingGroup
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AddThingToThingGroupInput
.
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) -> 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 AddThingToThingGroupInput
impl Clone for AddThingToThingGroupInput
source§fn clone(&self) -> AddThingToThingGroupInput
fn clone(&self) -> AddThingToThingGroupInput
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 Debug for AddThingToThingGroupInput
impl Debug for AddThingToThingGroupInput
source§impl PartialEq<AddThingToThingGroupInput> for AddThingToThingGroupInput
impl PartialEq<AddThingToThingGroupInput> for AddThingToThingGroupInput
source§fn eq(&self, other: &AddThingToThingGroupInput) -> bool
fn eq(&self, other: &AddThingToThingGroupInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.