* The Amazon Resource Name (ARN) of the deployment job. *
*/ private String arn; /** ** The Amazon Resource Name (ARN) of the fleet. *
*/ private String fleet; /** ** The status of the deployment job. *
*/ private String status; /** ** The deployment configuration. *
*/ private DeploymentConfig deploymentConfig; /** ** The deployment application configuration. *
*/ private java.util.List* A short description of the reason why the deployment job failed. *
*/ private String failureReason; /** ** The deployment job failure code. *
*/ private String failureCode; /** ** The time, in milliseconds since the epoch, when the deployment job was created. *
*/ private java.util.Date createdAt; /** ** A list of robot deployment summaries. *
*/ private java.util.List* The list of all tags added to the specified deployment job. *
*/ private java.util.Map* The Amazon Resource Name (ARN) of the deployment job. *
* * @param arn * The Amazon Resource Name (ARN) of the deployment job. */ public void setArn(String arn) { this.arn = arn; } /** ** The Amazon Resource Name (ARN) of the deployment job. *
* * @return The Amazon Resource Name (ARN) of the deployment job. */ public String getArn() { return this.arn; } /** ** The Amazon Resource Name (ARN) of the deployment job. *
* * @param arn * The Amazon Resource Name (ARN) of the deployment job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withArn(String arn) { setArn(arn); return this; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @param fleet * The Amazon Resource Name (ARN) of the fleet. */ public void setFleet(String fleet) { this.fleet = fleet; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @return The Amazon Resource Name (ARN) of the fleet. */ public String getFleet() { return this.fleet; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @param fleet * The Amazon Resource Name (ARN) of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withFleet(String fleet) { setFleet(fleet); return this; } /** ** The status of the deployment job. *
* * @param status * The status of the deployment job. * @see DeploymentStatus */ public void setStatus(String status) { this.status = status; } /** ** The status of the deployment job. *
* * @return The status of the deployment job. * @see DeploymentStatus */ public String getStatus() { return this.status; } /** ** The status of the deployment job. *
* * @param status * The status of the deployment job. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ public DescribeDeploymentJobResult withStatus(String status) { setStatus(status); return this; } /** ** The status of the deployment job. *
* * @param status * The status of the deployment job. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ public DescribeDeploymentJobResult withStatus(DeploymentStatus status) { this.status = status.toString(); return this; } /** ** The deployment configuration. *
* * @param deploymentConfig * The deployment configuration. */ public void setDeploymentConfig(DeploymentConfig deploymentConfig) { this.deploymentConfig = deploymentConfig; } /** ** The deployment configuration. *
* * @return The deployment configuration. */ public DeploymentConfig getDeploymentConfig() { return this.deploymentConfig; } /** ** The deployment configuration. *
* * @param deploymentConfig * The deployment configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withDeploymentConfig(DeploymentConfig deploymentConfig) { setDeploymentConfig(deploymentConfig); return this; } /** ** The deployment application configuration. *
* * @return The deployment application configuration. */ public java.util.List* The deployment application configuration. *
* * @param deploymentApplicationConfigs * The deployment application configuration. */ public void setDeploymentApplicationConfigs(java.util.Collection* The deployment application configuration. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setDeploymentApplicationConfigs(java.util.Collection)} or * {@link #withDeploymentApplicationConfigs(java.util.Collection)} if you want to override the existing values. *
* * @param deploymentApplicationConfigs * The deployment application configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withDeploymentApplicationConfigs(DeploymentApplicationConfig... deploymentApplicationConfigs) { if (this.deploymentApplicationConfigs == null) { setDeploymentApplicationConfigs(new java.util.ArrayList* The deployment application configuration. *
* * @param deploymentApplicationConfigs * The deployment application configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withDeploymentApplicationConfigs(java.util.Collection* A short description of the reason why the deployment job failed. *
* * @param failureReason * A short description of the reason why the deployment job failed. */ public void setFailureReason(String failureReason) { this.failureReason = failureReason; } /** ** A short description of the reason why the deployment job failed. *
* * @return A short description of the reason why the deployment job failed. */ public String getFailureReason() { return this.failureReason; } /** ** A short description of the reason why the deployment job failed. *
* * @param failureReason * A short description of the reason why the deployment job failed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withFailureReason(String failureReason) { setFailureReason(failureReason); return this; } /** ** The deployment job failure code. *
* * @param failureCode * The deployment job failure code. * @see DeploymentJobErrorCode */ public void setFailureCode(String failureCode) { this.failureCode = failureCode; } /** ** The deployment job failure code. *
* * @return The deployment job failure code. * @see DeploymentJobErrorCode */ public String getFailureCode() { return this.failureCode; } /** ** The deployment job failure code. *
* * @param failureCode * The deployment job failure code. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentJobErrorCode */ public DescribeDeploymentJobResult withFailureCode(String failureCode) { setFailureCode(failureCode); return this; } /** ** The deployment job failure code. *
* * @param failureCode * The deployment job failure code. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentJobErrorCode */ public DescribeDeploymentJobResult withFailureCode(DeploymentJobErrorCode failureCode) { this.failureCode = failureCode.toString(); return this; } /** ** The time, in milliseconds since the epoch, when the deployment job was created. *
* * @param createdAt * The time, in milliseconds since the epoch, when the deployment job was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** ** The time, in milliseconds since the epoch, when the deployment job was created. *
* * @return The time, in milliseconds since the epoch, when the deployment job was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** ** The time, in milliseconds since the epoch, when the deployment job was created. *
* * @param createdAt * The time, in milliseconds since the epoch, when the deployment job was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** ** A list of robot deployment summaries. *
* * @return A list of robot deployment summaries. */ public java.util.List* A list of robot deployment summaries. *
* * @param robotDeploymentSummary * A list of robot deployment summaries. */ public void setRobotDeploymentSummary(java.util.Collection* A list of robot deployment summaries. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setRobotDeploymentSummary(java.util.Collection)} or * {@link #withRobotDeploymentSummary(java.util.Collection)} if you want to override the existing values. *
* * @param robotDeploymentSummary * A list of robot deployment summaries. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withRobotDeploymentSummary(RobotDeployment... robotDeploymentSummary) { if (this.robotDeploymentSummary == null) { setRobotDeploymentSummary(new java.util.ArrayList* A list of robot deployment summaries. *
* * @param robotDeploymentSummary * A list of robot deployment summaries. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withRobotDeploymentSummary(java.util.Collection* The list of all tags added to the specified deployment job. *
* * @return The list of all tags added to the specified deployment job. */ public java.util.Map* The list of all tags added to the specified deployment job. *
* * @param tags * The list of all tags added to the specified deployment job. */ public void setTags(java.util.Map* The list of all tags added to the specified deployment job. *
* * @param tags * The list of all tags added to the specified deployment job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withTags(java.util.Map