Struct aws_sdk_iot::input::add_thing_to_thing_group_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for AddThingToThingGroupInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn thing_group_name(self, input: impl Into<String>) -> Self
pub fn thing_group_name(self, input: impl Into<String>) -> Self
The name of the group to which you are adding a thing.
sourcepub fn set_thing_group_name(self, input: Option<String>) -> Self
pub fn set_thing_group_name(self, input: Option<String>) -> Self
The name of the group to which you are adding a thing.
sourcepub fn thing_group_arn(self, input: impl Into<String>) -> Self
pub fn thing_group_arn(self, input: impl Into<String>) -> Self
The ARN of the group to which you are adding a thing.
sourcepub fn set_thing_group_arn(self, input: Option<String>) -> Self
pub fn set_thing_group_arn(self, input: Option<String>) -> Self
The ARN of the group to which you are adding a thing.
sourcepub fn thing_name(self, input: impl Into<String>) -> Self
pub fn thing_name(self, input: impl Into<String>) -> Self
The name of the thing to add to a group.
sourcepub fn set_thing_name(self, input: Option<String>) -> Self
pub fn set_thing_name(self, input: Option<String>) -> Self
The name of the thing to add to a group.
sourcepub fn thing_arn(self, input: impl Into<String>) -> Self
pub fn thing_arn(self, input: impl Into<String>) -> Self
The ARN of the thing to add to a group.
sourcepub fn set_thing_arn(self, input: Option<String>) -> Self
pub fn set_thing_arn(self, input: Option<String>) -> Self
The ARN of the thing to add to a group.
sourcepub fn override_dynamic_groups(self, input: bool) -> Self
pub fn override_dynamic_groups(self, input: bool) -> Self
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.
sourcepub fn set_override_dynamic_groups(self, input: Option<bool>) -> Self
pub fn set_override_dynamic_groups(self, input: Option<bool>) -> Self
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.
sourcepub fn build(self) -> Result<AddThingToThingGroupInput, BuildError>
pub fn build(self) -> Result<AddThingToThingGroupInput, BuildError>
Consumes the builder and constructs a AddThingToThingGroupInput
.