Struct rusoto_iot::DescribeIndexResponse[][src]

pub struct DescribeIndexResponse {
    pub index_name: Option<String>,
    pub index_status: Option<String>,
    pub schema: Option<String>,
}

Fields

The index name.

The index status.

Contains a value that specifies the type of indexing performed. Valid values are:

  1. REGISTRY – Your thing index will contain only registry data.

  2. REGISTRYANDSHADOW - Your thing index will contain registry and shadow data.

Trait Implementations

impl Default for DescribeIndexResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeIndexResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeIndexResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeIndexResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations