[][src]Struct rusoto_elasticbeanstalk::ApplicationVersionDescription

pub struct ApplicationVersionDescription {
    pub application_name: Option<String>,
    pub application_version_arn: Option<String>,
    pub build_arn: Option<String>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub description: Option<String>,
    pub source_build_information: Option<SourceBuildInformation>,
    pub source_bundle: Option<S3Location>,
    pub status: Option<String>,
    pub version_label: Option<String>,
}

Describes the properties of an application version.

Fields

application_name: Option<String>

The name of the application to which the application version belongs.

application_version_arn: Option<String>

The Amazon Resource Name (ARN) of the application version.

build_arn: Option<String>

Reference to the artifact from the AWS CodeBuild build.

date_created: Option<String>

The creation date of the application version.

date_updated: Option<String>

The last modified date of the application version.

description: Option<String>

The description of the application version.

source_build_information: Option<SourceBuildInformation>

If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.

source_bundle: Option<S3Location>

The storage location of the application version's source bundle in Amazon S3.

status: Option<String>

The processing status of the application version. Reflects the state of the application version during its creation. Many of the values are only applicable if you specified True for the Process parameter of the CreateApplicationVersion action. The following list describes the possible values.

version_label: Option<String>

A unique identifier for the application version.

Trait Implementations

impl PartialEq<ApplicationVersionDescription> for ApplicationVersionDescription[src]

impl Default for ApplicationVersionDescription[src]

impl Clone for ApplicationVersionDescription[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ApplicationVersionDescription[src]

Auto Trait Implementations

impl Send for ApplicationVersionDescription

impl Sync for ApplicationVersionDescription

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self