[][src]Struct rusoto_chime::AppInstance

pub struct AppInstance {
    pub app_instance_arn: Option<String>,
    pub created_timestamp: Option<f64>,
    pub last_updated_timestamp: Option<f64>,
    pub metadata: Option<String>,
    pub name: Option<String>,
}

An instance of a Chime messaging application.

Fields

app_instance_arn: Option<String>

The ARN of the messaging instance.

created_timestamp: Option<f64>

The time at which an app instance was created. In epoch milliseconds.

last_updated_timestamp: Option<f64>

The time an app instance was last updated. In epoch milliseconds.

metadata: Option<String>

The metadata of an app instance.

name: Option<String>

The name of an app instance.

Trait Implementations

impl Clone for AppInstance[src]

impl Debug for AppInstance[src]

impl Default for AppInstance[src]

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

impl PartialEq<AppInstance> for AppInstance[src]

impl StructuralPartialEq for AppInstance[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> Instrument 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> 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.