pub struct UpdateDynamicThingGroupRequest {
pub expected_version: Option<i64>,
pub index_name: Option<String>,
pub query_string: Option<String>,
pub query_version: Option<String>,
pub thing_group_name: String,
pub thing_group_properties: ThingGroupProperties,
}Fields§
§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.
thing_group_name: StringThe name of the dynamic thing group to update.
thing_group_properties: ThingGroupPropertiesThe dynamic thing group properties to update.
Trait Implementations§
Source§impl Clone for UpdateDynamicThingGroupRequest
impl Clone for UpdateDynamicThingGroupRequest
Source§fn clone(&self) -> UpdateDynamicThingGroupRequest
fn clone(&self) -> UpdateDynamicThingGroupRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for UpdateDynamicThingGroupRequest
impl Default for UpdateDynamicThingGroupRequest
Source§fn default() -> UpdateDynamicThingGroupRequest
fn default() -> UpdateDynamicThingGroupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateDynamicThingGroupRequest
impl PartialEq for UpdateDynamicThingGroupRequest
Source§fn eq(&self, other: &UpdateDynamicThingGroupRequest) -> bool
fn eq(&self, other: &UpdateDynamicThingGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateDynamicThingGroupRequest
Auto Trait Implementations§
impl Freeze for UpdateDynamicThingGroupRequest
impl RefUnwindSafe for UpdateDynamicThingGroupRequest
impl Send for UpdateDynamicThingGroupRequest
impl Sync for UpdateDynamicThingGroupRequest
impl Unpin for UpdateDynamicThingGroupRequest
impl UnwindSafe for UpdateDynamicThingGroupRequest
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
Mutably borrows from an owned value. Read more