Struct aws_sdk_iot::input::AddThingToThingGroupInput
source · [−]#[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: 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: 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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddThingToThingGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddThingToThingGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AddThingToThingGroup
>
Creates a new builder-style object to manufacture AddThingToThingGroupInput
The name of the group to which you are adding a thing.
The ARN of the group to which you are adding a thing.
The name of the thing to add to a group.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AddThingToThingGroupInput
impl Send for AddThingToThingGroupInput
impl Sync for AddThingToThingGroupInput
impl Unpin for AddThingToThingGroupInput
impl UnwindSafe for AddThingToThingGroupInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more