#[non_exhaustive]pub struct UpdateDynamicThingGroupInput {
pub thing_group_name: Option<String>,
pub thing_group_properties: Option<ThingGroupProperties>,
pub expected_version: Option<i64>,
pub index_name: Option<String>,
pub query_string: Option<String>,
pub query_version: Option<String>,
}
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 name of the dynamic thing group to update.
thing_group_properties: Option<ThingGroupProperties>
The dynamic thing group properties to update.
expected_version: Option<i64>
The expected version of the dynamic thing group to update.
index_name: Option<String>
The dynamic thing group index to update.
Currently one index is supported: AWS_Things
.
query_string: Option<String>
The dynamic thing group search query string to update.
query_version: 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.
Implementations§
source§impl UpdateDynamicThingGroupInput
impl UpdateDynamicThingGroupInput
sourcepub fn thing_group_name(&self) -> Option<&str>
pub fn thing_group_name(&self) -> Option<&str>
The name of the dynamic thing group to update.
sourcepub fn thing_group_properties(&self) -> Option<&ThingGroupProperties>
pub fn thing_group_properties(&self) -> Option<&ThingGroupProperties>
The dynamic thing group properties to update.
sourcepub fn expected_version(&self) -> Option<i64>
pub fn expected_version(&self) -> Option<i64>
The expected version of the dynamic thing group to update.
sourcepub fn index_name(&self) -> Option<&str>
pub fn index_name(&self) -> Option<&str>
The dynamic thing group index to update.
Currently one index is supported: AWS_Things
.
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
The dynamic thing group search query string to update.
sourcepub fn query_version(&self) -> Option<&str>
pub fn query_version(&self) -> Option<&str>
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.
source§impl UpdateDynamicThingGroupInput
impl UpdateDynamicThingGroupInput
sourcepub fn builder() -> UpdateDynamicThingGroupInputBuilder
pub fn builder() -> UpdateDynamicThingGroupInputBuilder
Creates a new builder-style object to manufacture UpdateDynamicThingGroupInput
.
Trait Implementations§
source§impl Clone for UpdateDynamicThingGroupInput
impl Clone for UpdateDynamicThingGroupInput
source§fn clone(&self) -> UpdateDynamicThingGroupInput
fn clone(&self) -> UpdateDynamicThingGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDynamicThingGroupInput
impl Debug for UpdateDynamicThingGroupInput
source§impl PartialEq for UpdateDynamicThingGroupInput
impl PartialEq for UpdateDynamicThingGroupInput
source§fn eq(&self, other: &UpdateDynamicThingGroupInput) -> bool
fn eq(&self, other: &UpdateDynamicThingGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.