[−][src]Struct rusoto_elasticbeanstalk::ApplicationVersionDescription
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.
-
Unprocessed
– Application version wasn't pre-processed or validated. Elastic Beanstalk will validate configuration files during deployment of the application version to an environment. -
Processing
– Elastic Beanstalk is currently processing the application version. -
Building
– Application version is currently undergoing an AWS CodeBuild build. -
Processed
– Elastic Beanstalk was successfully pre-processed and validated. -
Failed
– Either the AWS CodeBuild build failed or configuration files didn't pass validation. This application version isn't usable.
version_label: Option<String>
A unique identifier for the application version.
Trait Implementations
impl PartialEq<ApplicationVersionDescription> for ApplicationVersionDescription
[src]
fn eq(&self, other: &ApplicationVersionDescription) -> bool
[src]
fn ne(&self, other: &ApplicationVersionDescription) -> bool
[src]
impl Default for ApplicationVersionDescription
[src]
impl Clone for ApplicationVersionDescription
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self