Struct aws_sdk_iot::input::CreateDynamicThingGroupInput [−][src]
#[non_exhaustive]pub struct CreateDynamicThingGroupInput {
pub thing_group_name: Option<String>,
pub thing_group_properties: Option<ThingGroupProperties>,
pub index_name: Option<String>,
pub query_string: Option<String>,
pub query_version: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.thing_group_name: Option<String>
The dynamic thing group name to create.
thing_group_properties: Option<ThingGroupProperties>
The dynamic thing group properties.
index_name: Option<String>
The dynamic thing group index name.
Currently one index is supported: AWS_Things
.
query_string: Option<String>
The dynamic thing group search query string.
See Query Syntax for information about query string syntax.
query_version: 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.
Metadata which can be used to manage the dynamic thing group.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDynamicThingGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDynamicThingGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDynamicThingGroup
>
Creates a new builder-style object to manufacture CreateDynamicThingGroupInput
The dynamic thing group name to create.
The dynamic thing group properties.
The dynamic thing group index name.
Currently one index is supported: AWS_Things
.
The dynamic thing group search query string.
See Query Syntax for information about query string syntax.
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.
Metadata which can be used to manage the dynamic thing group.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for CreateDynamicThingGroupInput
impl Sync for CreateDynamicThingGroupInput
impl Unpin for CreateDynamicThingGroupInput
impl UnwindSafe for CreateDynamicThingGroupInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more