[][src]Struct rusoto_codedeploy::ApplicationInfo

pub struct ApplicationInfo {
    pub application_id: Option<String>,
    pub application_name: Option<String>,
    pub compute_platform: Option<String>,
    pub create_time: Option<f64>,
    pub git_hub_account_name: Option<String>,
    pub linked_to_git_hub: Option<bool>,
}

Information about an application.

Fields

application_id: Option<String>

The application ID.

application_name: Option<String>

The application name.

compute_platform: Option<String>

The destination platform type for deployment of the application (Lambda or Server).

create_time: Option<f64>

The time at which the application was created.

git_hub_account_name: Option<String>

The name for a connection to a GitHub account.

linked_to_git_hub: Option<bool>

True if the user has authenticated with GitHub for the specified application. Otherwise, false.

Trait Implementations

impl Clone for ApplicationInfo[src]

impl Debug for ApplicationInfo[src]

impl Default for ApplicationInfo[src]

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

impl PartialEq<ApplicationInfo> for ApplicationInfo[src]

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