Struct aws_sdk_iot::operation::update_dynamic_thing_group::builders::UpdateDynamicThingGroupInputBuilder
source · #[non_exhaustive]pub struct UpdateDynamicThingGroupInputBuilder { /* private fields */ }
Expand description
A builder for UpdateDynamicThingGroupInput
.
Implementations§
source§impl UpdateDynamicThingGroupInputBuilder
impl UpdateDynamicThingGroupInputBuilder
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 dynamic thing group to update.
This field is required.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 dynamic thing group to update.
sourcepub fn get_thing_group_name(&self) -> &Option<String>
pub fn get_thing_group_name(&self) -> &Option<String>
The name of the dynamic thing group to update.
sourcepub fn thing_group_properties(self, input: ThingGroupProperties) -> Self
pub fn thing_group_properties(self, input: ThingGroupProperties) -> Self
The dynamic thing group properties to update.
This field is required.sourcepub fn set_thing_group_properties(
self,
input: Option<ThingGroupProperties>
) -> Self
pub fn set_thing_group_properties( self, input: Option<ThingGroupProperties> ) -> Self
The dynamic thing group properties to update.
sourcepub fn get_thing_group_properties(&self) -> &Option<ThingGroupProperties>
pub fn get_thing_group_properties(&self) -> &Option<ThingGroupProperties>
The dynamic thing group properties to update.
sourcepub fn expected_version(self, input: i64) -> Self
pub fn expected_version(self, input: i64) -> Self
The expected version of the dynamic thing group to update.
sourcepub fn set_expected_version(self, input: Option<i64>) -> Self
pub fn set_expected_version(self, input: Option<i64>) -> Self
The expected version of the dynamic thing group to update.
sourcepub fn get_expected_version(&self) -> &Option<i64>
pub fn get_expected_version(&self) -> &Option<i64>
The expected version of the dynamic thing group to update.
sourcepub fn index_name(self, input: impl Into<String>) -> Self
pub fn index_name(self, input: impl Into<String>) -> Self
The dynamic thing group index to update.
Currently one index is supported: AWS_Things
.
sourcepub fn set_index_name(self, input: Option<String>) -> Self
pub fn set_index_name(self, input: Option<String>) -> Self
The dynamic thing group index to update.
Currently one index is supported: AWS_Things
.
sourcepub fn get_index_name(&self) -> &Option<String>
pub fn get_index_name(&self) -> &Option<String>
The dynamic thing group index to update.
Currently one index is supported: AWS_Things
.
sourcepub fn query_string(self, input: impl Into<String>) -> Self
pub fn query_string(self, input: impl Into<String>) -> Self
The dynamic thing group search query string to update.
sourcepub fn set_query_string(self, input: Option<String>) -> Self
pub fn set_query_string(self, input: Option<String>) -> Self
The dynamic thing group search query string to update.
sourcepub fn get_query_string(&self) -> &Option<String>
pub fn get_query_string(&self) -> &Option<String>
The dynamic thing group search query string to update.
sourcepub fn query_version(self, input: impl Into<String>) -> Self
pub fn query_version(self, input: impl Into<String>) -> Self
The dynamic thing group query version to update.
Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.
sourcepub fn set_query_version(self, input: Option<String>) -> Self
pub fn set_query_version(self, input: Option<String>) -> Self
The dynamic thing group query version to update.
Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.
sourcepub fn get_query_version(&self) -> &Option<String>
pub fn get_query_version(&self) -> &Option<String>
The dynamic thing group query version to update.
Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.
sourcepub fn build(self) -> Result<UpdateDynamicThingGroupInput, BuildError>
pub fn build(self) -> Result<UpdateDynamicThingGroupInput, BuildError>
Consumes the builder and constructs a UpdateDynamicThingGroupInput
.
source§impl UpdateDynamicThingGroupInputBuilder
impl UpdateDynamicThingGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateDynamicThingGroupOutput, SdkError<UpdateDynamicThingGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateDynamicThingGroupOutput, SdkError<UpdateDynamicThingGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateDynamicThingGroupInputBuilder
impl Clone for UpdateDynamicThingGroupInputBuilder
source§fn clone(&self) -> UpdateDynamicThingGroupInputBuilder
fn clone(&self) -> UpdateDynamicThingGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateDynamicThingGroupInputBuilder
impl Default for UpdateDynamicThingGroupInputBuilder
source§fn default() -> UpdateDynamicThingGroupInputBuilder
fn default() -> UpdateDynamicThingGroupInputBuilder
source§impl PartialEq for UpdateDynamicThingGroupInputBuilder
impl PartialEq for UpdateDynamicThingGroupInputBuilder
source§fn eq(&self, other: &UpdateDynamicThingGroupInputBuilder) -> bool
fn eq(&self, other: &UpdateDynamicThingGroupInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.