public class ExecutionDetails extends Object implements Serializable, Cloneable
The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.
Constructor and Description |
---|
ExecutionDetails() |
Modifier and Type | Method and Description |
---|---|
ExecutionDetails |
clone() |
boolean |
equals(Object obj) |
String |
getExternalExecutionId()
The system-generated unique ID of this action used to identify this job
worker in any external systems, such as AWS CodeDeploy.
|
Integer |
getPercentComplete()
The percentage of work completed on the action, represented on a scale of
zero to one hundred percent.
|
String |
getSummary()
The summary of the current status of the actions.
|
int |
hashCode() |
void |
setExternalExecutionId(String externalExecutionId)
The system-generated unique ID of this action used to identify this job
worker in any external systems, such as AWS CodeDeploy.
|
void |
setPercentComplete(Integer percentComplete)
The percentage of work completed on the action, represented on a scale of
zero to one hundred percent.
|
void |
setSummary(String summary)
The summary of the current status of the actions.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ExecutionDetails |
withExternalExecutionId(String externalExecutionId)
The system-generated unique ID of this action used to identify this job
worker in any external systems, such as AWS CodeDeploy.
|
ExecutionDetails |
withPercentComplete(Integer percentComplete)
The percentage of work completed on the action, represented on a scale of
zero to one hundred percent.
|
ExecutionDetails |
withSummary(String summary)
The summary of the current status of the actions.
|
public void setSummary(String summary)
The summary of the current status of the actions.
summary
- The summary of the current status of the actions.public String getSummary()
The summary of the current status of the actions.
public ExecutionDetails withSummary(String summary)
The summary of the current status of the actions.
summary
- The summary of the current status of the actions.public void setExternalExecutionId(String externalExecutionId)
The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.
externalExecutionId
- The system-generated unique ID of this action used to identify
this job worker in any external systems, such as AWS CodeDeploy.public String getExternalExecutionId()
The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.
public ExecutionDetails withExternalExecutionId(String externalExecutionId)
The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.
externalExecutionId
- The system-generated unique ID of this action used to identify
this job worker in any external systems, such as AWS CodeDeploy.public void setPercentComplete(Integer percentComplete)
The percentage of work completed on the action, represented on a scale of zero to one hundred percent.
percentComplete
- The percentage of work completed on the action, represented on a
scale of zero to one hundred percent.public Integer getPercentComplete()
The percentage of work completed on the action, represented on a scale of zero to one hundred percent.
public ExecutionDetails withPercentComplete(Integer percentComplete)
The percentage of work completed on the action, represented on a scale of zero to one hundred percent.
percentComplete
- The percentage of work completed on the action, represented on a
scale of zero to one hundred percent.public String toString()
toString
in class Object
Object.toString()
public ExecutionDetails clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.