[][src]Struct rusoto_iot::UpdateDynamicThingGroupRequest

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: String

The name of the dynamic thing group to update.

thing_group_properties: ThingGroupProperties

The dynamic thing group properties to update.

Trait Implementations

impl Clone for UpdateDynamicThingGroupRequest[src]

impl Default for UpdateDynamicThingGroupRequest[src]

impl PartialEq<UpdateDynamicThingGroupRequest> for UpdateDynamicThingGroupRequest[src]

impl Debug for UpdateDynamicThingGroupRequest[src]

impl Serialize for UpdateDynamicThingGroupRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,