Struct rusoto_elasticbeanstalk::ApplicationVersionDescription[][src]

pub struct ApplicationVersionDescription {
    pub application_name: 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

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

Reference to the artifact from the AWS CodeBuild build.

The creation date of the application version.

The last modified date of the application version.

The description of the application version.

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

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

The processing status of the application version.

A unique identifier for the application version.

Trait Implementations

impl Default for ApplicationVersionDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for ApplicationVersionDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for ApplicationVersionDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ApplicationVersionDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations