#[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 ==
.impl StructuralPartialEq for UpdateDynamicThingGroupInput
Auto Trait Implementations§
impl Freeze for UpdateDynamicThingGroupInput
impl RefUnwindSafe for UpdateDynamicThingGroupInput
impl Send for UpdateDynamicThingGroupInput
impl Sync for UpdateDynamicThingGroupInput
impl Unpin for UpdateDynamicThingGroupInput
impl UnwindSafe for UpdateDynamicThingGroupInput
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