[][src]Struct rusoto_iot::UpdateDimensionResponse

pub struct UpdateDimensionResponse {
    pub arn: Option<String>,
    pub creation_date: Option<f64>,
    pub last_modified_date: Option<f64>,
    pub name: Option<String>,
    pub string_values: Option<Vec<String>>,
    pub type_: Option<String>,
}

Fields

arn: Option<String>

The ARN (Amazon resource name) of the created dimension.

creation_date: Option<f64>

The date and time, in milliseconds since epoch, when the dimension was initially created.

last_modified_date: Option<f64>

The date and time, in milliseconds since epoch, when the dimension was most recently updated.

name: Option<String>

A unique identifier for the dimension.

string_values: Option<Vec<String>>

The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

type_: Option<String>

The type of the dimension.

Trait Implementations

impl Clone for UpdateDimensionResponse[src]

impl Debug for UpdateDimensionResponse[src]

impl Default for UpdateDimensionResponse[src]

impl<'de> Deserialize<'de> for UpdateDimensionResponse[src]

impl PartialEq<UpdateDimensionResponse> for UpdateDimensionResponse[src]

impl StructuralPartialEq for UpdateDimensionResponse[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.