Struct aws_sdk_iot::model::thing_group_document::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ThingGroupDocument
.
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 thing group name.
sourcepub fn set_thing_group_name(self, input: Option<String>) -> Self
pub fn set_thing_group_name(self, input: Option<String>) -> Self
The thing group name.
sourcepub fn thing_group_id(self, input: impl Into<String>) -> Self
pub fn thing_group_id(self, input: impl Into<String>) -> Self
The thing group ID.
sourcepub fn set_thing_group_id(self, input: Option<String>) -> Self
pub fn set_thing_group_id(self, input: Option<String>) -> Self
The thing group ID.
sourcepub fn thing_group_description(self, input: impl Into<String>) -> Self
pub fn thing_group_description(self, input: impl Into<String>) -> Self
The thing group description.
sourcepub fn set_thing_group_description(self, input: Option<String>) -> Self
pub fn set_thing_group_description(self, input: Option<String>) -> Self
The thing group description.
sourcepub fn attributes(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn attributes(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to attributes
.
To override the contents of this collection use set_attributes
.
The thing group attributes.
sourcepub fn set_attributes(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_attributes(self, input: Option<HashMap<String, String>>) -> Self
The thing group attributes.
sourcepub fn parent_group_names(self, input: impl Into<String>) -> Self
pub fn parent_group_names(self, input: impl Into<String>) -> Self
Appends an item to parent_group_names
.
To override the contents of this collection use set_parent_group_names
.
Parent group names.
sourcepub fn set_parent_group_names(self, input: Option<Vec<String>>) -> Self
pub fn set_parent_group_names(self, input: Option<Vec<String>>) -> Self
Parent group names.
sourcepub fn build(self) -> ThingGroupDocument
pub fn build(self) -> ThingGroupDocument
Consumes the builder and constructs a ThingGroupDocument
.