Struct aws_sdk_iot::model::thing_document::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ThingDocument
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn thing_name(self, input: impl Into<String>) -> Self
pub fn thing_name(self, input: impl Into<String>) -> Self
The thing name.
sourcepub fn set_thing_name(self, input: Option<String>) -> Self
pub fn set_thing_name(self, input: Option<String>) -> Self
The thing name.
sourcepub fn set_thing_id(self, input: Option<String>) -> Self
pub fn set_thing_id(self, input: Option<String>) -> Self
The thing ID.
sourcepub fn thing_type_name(self, input: impl Into<String>) -> Self
pub fn thing_type_name(self, input: impl Into<String>) -> Self
The thing type name.
sourcepub fn set_thing_type_name(self, input: Option<String>) -> Self
pub fn set_thing_type_name(self, input: Option<String>) -> Self
The thing type name.
sourcepub fn thing_group_names(self, input: impl Into<String>) -> Self
pub fn thing_group_names(self, input: impl Into<String>) -> Self
Appends an item to thing_group_names
.
To override the contents of this collection use set_thing_group_names
.
Thing group names.
sourcepub fn set_thing_group_names(self, input: Option<Vec<String>>) -> Self
pub fn set_thing_group_names(self, input: Option<Vec<String>>) -> Self
Thing group names.
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 attributes.
sourcepub fn shadow(self, input: impl Into<String>) -> Self
pub fn shadow(self, input: impl Into<String>) -> Self
The unnamed shadow and named shadow.
For more information about shadows, see IoT Device Shadow service.
sourcepub fn set_shadow(self, input: Option<String>) -> Self
pub fn set_shadow(self, input: Option<String>) -> Self
The unnamed shadow and named shadow.
For more information about shadows, see IoT Device Shadow service.
sourcepub fn device_defender(self, input: impl Into<String>) -> Self
pub fn device_defender(self, input: impl Into<String>) -> Self
Contains Device Defender data.
For more information about Device Defender, see Device Defender.
sourcepub fn set_device_defender(self, input: Option<String>) -> Self
pub fn set_device_defender(self, input: Option<String>) -> Self
Contains Device Defender data.
For more information about Device Defender, see Device Defender.
sourcepub fn connectivity(self, input: ThingConnectivity) -> Self
pub fn connectivity(self, input: ThingConnectivity) -> Self
Indicates whether the thing is connected to the Amazon Web Services IoT Core service.
sourcepub fn set_connectivity(self, input: Option<ThingConnectivity>) -> Self
pub fn set_connectivity(self, input: Option<ThingConnectivity>) -> Self
Indicates whether the thing is connected to the Amazon Web Services IoT Core service.
sourcepub fn build(self) -> ThingDocument
pub fn build(self) -> ThingDocument
Consumes the builder and constructs a ThingDocument
.