Struct aws_sdk_iot::operation::create_dynamic_thing_group::builders::CreateDynamicThingGroupInputBuilder
source · #[non_exhaustive]pub struct CreateDynamicThingGroupInputBuilder { /* private fields */ }
Expand description
A builder for CreateDynamicThingGroupInput
.
Implementations§
source§impl CreateDynamicThingGroupInputBuilder
impl CreateDynamicThingGroupInputBuilder
sourcepub fn thing_group_name(self, input: impl Into<String>) -> Self
pub fn thing_group_name(self, input: impl Into<String>) -> Self
The dynamic thing group name to create.
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 dynamic thing group name to create.
sourcepub fn get_thing_group_name(&self) -> &Option<String>
pub fn get_thing_group_name(&self) -> &Option<String>
The dynamic thing group name to create.
sourcepub fn thing_group_properties(self, input: ThingGroupProperties) -> Self
pub fn thing_group_properties(self, input: ThingGroupProperties) -> Self
The dynamic thing group properties.
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.
sourcepub fn get_thing_group_properties(&self) -> &Option<ThingGroupProperties>
pub fn get_thing_group_properties(&self) -> &Option<ThingGroupProperties>
The dynamic thing group properties.
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 name.
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 name.
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 name.
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.
See Query Syntax for information about query string syntax.
This field is required.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.
See Query Syntax for information about query string syntax.
sourcepub fn get_query_string(&self) -> &Option<String>
pub fn get_query_string(&self) -> &Option<String>
The dynamic thing group search query string.
See Query Syntax for information about query string syntax.
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.
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.
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.
Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Metadata which can be used to manage the dynamic thing group.
Metadata which can be used to manage the dynamic thing group.
Metadata which can be used to manage the dynamic thing group.
sourcepub fn build(self) -> Result<CreateDynamicThingGroupInput, BuildError>
pub fn build(self) -> Result<CreateDynamicThingGroupInput, BuildError>
Consumes the builder and constructs a CreateDynamicThingGroupInput
.
source§impl CreateDynamicThingGroupInputBuilder
impl CreateDynamicThingGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateDynamicThingGroupOutput, SdkError<CreateDynamicThingGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateDynamicThingGroupOutput, SdkError<CreateDynamicThingGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateDynamicThingGroupInputBuilder
impl Clone for CreateDynamicThingGroupInputBuilder
source§fn clone(&self) -> CreateDynamicThingGroupInputBuilder
fn clone(&self) -> CreateDynamicThingGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateDynamicThingGroupInputBuilder
impl Default for CreateDynamicThingGroupInputBuilder
source§fn default() -> CreateDynamicThingGroupInputBuilder
fn default() -> CreateDynamicThingGroupInputBuilder
source§impl PartialEq for CreateDynamicThingGroupInputBuilder
impl PartialEq for CreateDynamicThingGroupInputBuilder
source§fn eq(&self, other: &CreateDynamicThingGroupInputBuilder) -> bool
fn eq(&self, other: &CreateDynamicThingGroupInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDynamicThingGroupInputBuilder
Auto Trait Implementations§
impl Freeze for CreateDynamicThingGroupInputBuilder
impl RefUnwindSafe for CreateDynamicThingGroupInputBuilder
impl Send for CreateDynamicThingGroupInputBuilder
impl Sync for CreateDynamicThingGroupInputBuilder
impl Unpin for CreateDynamicThingGroupInputBuilder
impl UnwindSafe for CreateDynamicThingGroupInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more