Class ApplicationVersionDescription
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.ApplicationVersionDescription
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ApplicationVersionDescription extends Object implements Serializable, Cloneable
Describes the properties of an application version.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationVersionDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplicationVersionDescriptionclone()booleanequals(Object obj)StringgetApplicationName()The name of the application associated with this release.DategetDateCreated()The creation date of the application version.DategetDateUpdated()The last modified date of the application version.StringgetDescription()The description of this application version.S3LocationgetSourceBundle()The location where the source bundle is located for this version.StringgetStatus()The processing status of the application version.StringgetVersionLabel()A label uniquely identifying the version for the associated application.inthashCode()voidsetApplicationName(String applicationName)The name of the application associated with this release.voidsetDateCreated(Date dateCreated)The creation date of the application version.voidsetDateUpdated(Date dateUpdated)The last modified date of the application version.voidsetDescription(String description)The description of this application version.voidsetSourceBundle(S3Location sourceBundle)The location where the source bundle is located for this version.voidsetStatus(ApplicationVersionStatus status)The processing status of the application version.voidsetStatus(String status)The processing status of the application version.voidsetVersionLabel(String versionLabel)A label uniquely identifying the version for the associated application.StringtoString()Returns a string representation of this object; useful for testing and debugging.ApplicationVersionDescriptionwithApplicationName(String applicationName)The name of the application associated with this release.ApplicationVersionDescriptionwithDateCreated(Date dateCreated)The creation date of the application version.ApplicationVersionDescriptionwithDateUpdated(Date dateUpdated)The last modified date of the application version.ApplicationVersionDescriptionwithDescription(String description)The description of this application version.ApplicationVersionDescriptionwithSourceBundle(S3Location sourceBundle)The location where the source bundle is located for this version.ApplicationVersionDescriptionwithStatus(ApplicationVersionStatus status)The processing status of the application version.ApplicationVersionDescriptionwithStatus(String status)The processing status of the application version.ApplicationVersionDescriptionwithVersionLabel(String versionLabel)A label uniquely identifying the version for the associated application.
-
-
-
Method Detail
-
setApplicationName
public void setApplicationName(String applicationName)
The name of the application associated with this release.
- Parameters:
applicationName- The name of the application associated with this release.
-
getApplicationName
public String getApplicationName()
The name of the application associated with this release.
- Returns:
- The name of the application associated with this release.
-
withApplicationName
public ApplicationVersionDescription withApplicationName(String applicationName)
The name of the application associated with this release.
- Parameters:
applicationName- The name of the application associated with this release.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDescription
public void setDescription(String description)
The description of this application version.
- Parameters:
description- The description of this application version.
-
getDescription
public String getDescription()
The description of this application version.
- Returns:
- The description of this application version.
-
withDescription
public ApplicationVersionDescription withDescription(String description)
The description of this application version.
- Parameters:
description- The description of this application version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setVersionLabel
public void setVersionLabel(String versionLabel)
A label uniquely identifying the version for the associated application.
- Parameters:
versionLabel- A label uniquely identifying the version for the associated application.
-
getVersionLabel
public String getVersionLabel()
A label uniquely identifying the version for the associated application.
- Returns:
- A label uniquely identifying the version for the associated application.
-
withVersionLabel
public ApplicationVersionDescription withVersionLabel(String versionLabel)
A label uniquely identifying the version for the associated application.
- Parameters:
versionLabel- A label uniquely identifying the version for the associated application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSourceBundle
public void setSourceBundle(S3Location sourceBundle)
The location where the source bundle is located for this version.
- Parameters:
sourceBundle- The location where the source bundle is located for this version.
-
getSourceBundle
public S3Location getSourceBundle()
The location where the source bundle is located for this version.
- Returns:
- The location where the source bundle is located for this version.
-
withSourceBundle
public ApplicationVersionDescription withSourceBundle(S3Location sourceBundle)
The location where the source bundle is located for this version.
- Parameters:
sourceBundle- The location where the source bundle is located for this version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDateCreated
public void setDateCreated(Date dateCreated)
The creation date of the application version.
- Parameters:
dateCreated- The creation date of the application version.
-
getDateCreated
public Date getDateCreated()
The creation date of the application version.
- Returns:
- The creation date of the application version.
-
withDateCreated
public ApplicationVersionDescription withDateCreated(Date dateCreated)
The creation date of the application version.
- Parameters:
dateCreated- The creation date of the application version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDateUpdated
public void setDateUpdated(Date dateUpdated)
The last modified date of the application version.
- Parameters:
dateUpdated- The last modified date of the application version.
-
getDateUpdated
public Date getDateUpdated()
The last modified date of the application version.
- Returns:
- The last modified date of the application version.
-
withDateUpdated
public ApplicationVersionDescription withDateUpdated(Date dateUpdated)
The last modified date of the application version.
- Parameters:
dateUpdated- The last modified date of the application version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStatus
public void setStatus(String status)
The processing status of the application version.
- Parameters:
status- The processing status of the application version.- See Also:
ApplicationVersionStatus
-
getStatus
public String getStatus()
The processing status of the application version.
- Returns:
- The processing status of the application version.
- See Also:
ApplicationVersionStatus
-
withStatus
public ApplicationVersionDescription withStatus(String status)
The processing status of the application version.
- Parameters:
status- The processing status of the application version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationVersionStatus
-
setStatus
public void setStatus(ApplicationVersionStatus status)
The processing status of the application version.
- Parameters:
status- The processing status of the application version.- See Also:
ApplicationVersionStatus
-
withStatus
public ApplicationVersionDescription withStatus(ApplicationVersionStatus status)
The processing status of the application version.
- Parameters:
status- The processing status of the application version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationVersionStatus
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ApplicationVersionDescription clone()
-
-