[][src]Struct rusoto_iot::CreateDynamicThingGroupRequest

pub struct CreateDynamicThingGroupRequest {
    pub index_name: Option<String>,
    pub query_string: String,
    pub query_version: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub thing_group_name: String,
    pub thing_group_properties: Option<ThingGroupProperties>,
}

Fields

index_name: Option<String>

The dynamic thing group index name.

Currently one index is supported: "AWS_Things".

query_string: 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.

tags: Option<Vec<Tag>>

Metadata which can be used to manage the dynamic thing group.

thing_group_name: String

The dynamic thing group name to create.

thing_group_properties: Option<ThingGroupProperties>

The dynamic thing group properties.

Trait Implementations

impl Clone for CreateDynamicThingGroupRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<CreateDynamicThingGroupRequest> for CreateDynamicThingGroupRequest[src]

impl Default for CreateDynamicThingGroupRequest[src]

impl Debug for CreateDynamicThingGroupRequest[src]

impl Serialize for CreateDynamicThingGroupRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self