[][src]Struct rusoto_sms::AppSummary

pub struct AppSummary {
    pub app_id: Option<String>,
    pub creation_time: Option<f64>,
    pub description: Option<String>,
    pub last_modified: Option<f64>,
    pub latest_replication_time: Option<f64>,
    pub launch_details: Option<LaunchDetails>,
    pub launch_status: Option<String>,
    pub launch_status_message: Option<String>,
    pub name: Option<String>,
    pub replication_status: Option<String>,
    pub replication_status_message: Option<String>,
    pub role_name: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub total_server_groups: Option<i64>,
    pub total_servers: Option<i64>,
}

Information about the application.

Fields

app_id: Option<String>

Unique ID of the application.

creation_time: Option<f64>

Time of creation of this application.

description: Option<String>

Description of the application.

last_modified: Option<f64>

Timestamp of the application's creation.

latest_replication_time: Option<f64>

Timestamp of the application's most recent successful replication.

launch_details: Option<LaunchDetails>

Details about the latest launch of the application.

launch_status: Option<String>

Launch status of the application.

launch_status_message: Option<String>

A message related to the launch status of the application.

name: Option<String>

Name of the application.

replication_status: Option<String>

Replication status of the application.

replication_status_message: Option<String>

A message related to the replication status of the application.

role_name: Option<String>

Name of the service role in the customer's account used by AWS SMS.

status: Option<String>

Status of the application.

status_message: Option<String>

A message related to the status of the application

total_server_groups: Option<i64>

Number of server groups present in the application.

total_servers: Option<i64>

Number of servers present in the application.

Trait Implementations

impl Clone for AppSummary[src]

impl Debug for AppSummary[src]

impl Default for AppSummary[src]

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

impl PartialEq<AppSummary> for AppSummary[src]

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