/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.elasticbeanstalk.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Describes the properties of an application version. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ApplicationVersionDescription implements Serializable, Cloneable { /** ** The Amazon Resource Name (ARN) of the application version. *
*/ private String applicationVersionArn; /** ** The name of the application to which the application version belongs. *
*/ private String applicationName; /** ** The description of the application version. *
*/ private String description; /** ** A unique identifier for the application version. *
*/ private String versionLabel; /** ** If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. *
*/ private SourceBuildInformation sourceBuildInformation; /** ** Reference to the artifact from the AWS CodeBuild build. *
*/ private String buildArn; /** ** The storage location of the application version's source bundle in Amazon S3. *
*/ private S3Location sourceBundle; /** ** The creation date of the application version. *
*/ private java.util.Date dateCreated; /** ** The last modified date of the application version. *
*/ private java.util.Date dateUpdated; /** *
* 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.
*
* The Amazon Resource Name (ARN) of the application version. *
* * @param applicationVersionArn * The Amazon Resource Name (ARN) of the application version. */ public void setApplicationVersionArn(String applicationVersionArn) { this.applicationVersionArn = applicationVersionArn; } /** ** The Amazon Resource Name (ARN) of the application version. *
* * @return The Amazon Resource Name (ARN) of the application version. */ public String getApplicationVersionArn() { return this.applicationVersionArn; } /** ** The Amazon Resource Name (ARN) of the application version. *
* * @param applicationVersionArn * The Amazon Resource Name (ARN) of the application version. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withApplicationVersionArn(String applicationVersionArn) { setApplicationVersionArn(applicationVersionArn); return this; } /** ** The name of the application to which the application version belongs. *
* * @param applicationName * The name of the application to which the application version belongs. */ public void setApplicationName(String applicationName) { this.applicationName = applicationName; } /** ** The name of the application to which the application version belongs. *
* * @return The name of the application to which the application version belongs. */ public String getApplicationName() { return this.applicationName; } /** ** The name of the application to which the application version belongs. *
* * @param applicationName * The name of the application to which the application version belongs. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withApplicationName(String applicationName) { setApplicationName(applicationName); return this; } /** ** The description of the application version. *
* * @param description * The description of the application version. */ public void setDescription(String description) { this.description = description; } /** ** The description of the application version. *
* * @return The description of the application version. */ public String getDescription() { return this.description; } /** ** The description of the application version. *
* * @param description * The description of the application version. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withDescription(String description) { setDescription(description); return this; } /** ** A unique identifier for the application version. *
* * @param versionLabel * A unique identifier for the application version. */ public void setVersionLabel(String versionLabel) { this.versionLabel = versionLabel; } /** ** A unique identifier for the application version. *
* * @return A unique identifier for the application version. */ public String getVersionLabel() { return this.versionLabel; } /** ** A unique identifier for the application version. *
* * @param versionLabel * A unique identifier for the application version. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withVersionLabel(String versionLabel) { setVersionLabel(versionLabel); return this; } /** ** If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. *
* * @param sourceBuildInformation * If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. */ public void setSourceBuildInformation(SourceBuildInformation sourceBuildInformation) { this.sourceBuildInformation = sourceBuildInformation; } /** ** If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. *
* * @return If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. */ public SourceBuildInformation getSourceBuildInformation() { return this.sourceBuildInformation; } /** ** If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. *
* * @param sourceBuildInformation * If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the * application version. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withSourceBuildInformation(SourceBuildInformation sourceBuildInformation) { setSourceBuildInformation(sourceBuildInformation); return this; } /** ** Reference to the artifact from the AWS CodeBuild build. *
* * @param buildArn * Reference to the artifact from the AWS CodeBuild build. */ public void setBuildArn(String buildArn) { this.buildArn = buildArn; } /** ** Reference to the artifact from the AWS CodeBuild build. *
* * @return Reference to the artifact from the AWS CodeBuild build. */ public String getBuildArn() { return this.buildArn; } /** ** Reference to the artifact from the AWS CodeBuild build. *
* * @param buildArn * Reference to the artifact from the AWS CodeBuild build. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withBuildArn(String buildArn) { setBuildArn(buildArn); return this; } /** ** The storage location of the application version's source bundle in Amazon S3. *
* * @param sourceBundle * The storage location of the application version's source bundle in Amazon S3. */ public void setSourceBundle(S3Location sourceBundle) { this.sourceBundle = sourceBundle; } /** ** The storage location of the application version's source bundle in Amazon S3. *
* * @return The storage location of the application version's source bundle in Amazon S3. */ public S3Location getSourceBundle() { return this.sourceBundle; } /** ** The storage location of the application version's source bundle in Amazon S3. *
* * @param sourceBundle * The storage location of the application version's source bundle in Amazon S3. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withSourceBundle(S3Location sourceBundle) { setSourceBundle(sourceBundle); return this; } /** ** The creation date of the application version. *
* * @param dateCreated * The creation date of the application version. */ public void setDateCreated(java.util.Date dateCreated) { this.dateCreated = dateCreated; } /** ** The creation date of the application version. *
* * @return The creation date of the application version. */ public java.util.Date getDateCreated() { return this.dateCreated; } /** ** The creation date of the application version. *
* * @param dateCreated * The creation date of the application version. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withDateCreated(java.util.Date dateCreated) { setDateCreated(dateCreated); return this; } /** ** The last modified date of the application version. *
* * @param dateUpdated * The last modified date of the application version. */ public void setDateUpdated(java.util.Date dateUpdated) { this.dateUpdated = dateUpdated; } /** ** The last modified date of the application version. *
* * @return The last modified date of the application version. */ public java.util.Date getDateUpdated() { return this.dateUpdated; } /** ** The last modified date of the application version. *
* * @param dateUpdated * The last modified date of the application version. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationVersionDescription withDateUpdated(java.util.Date dateUpdated) { setDateUpdated(dateUpdated); return this; } /** *
* 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.
*
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.
*
* 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.
*
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.
*
* 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.
*
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.
*
* 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.
*
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.
*
* 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.
*
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.
*