public class StepExecutionStatusDetail
extends java.lang.Object
implements java.io.Serializable
Specifies the execution state of a step.
| コンストラクタと説明 |
|---|
StepExecutionStatusDetail()
Default constructor for a new StepExecutionStatusDetail object.
|
StepExecutionStatusDetail(StepExecutionState state,
java.util.Date creationDateTime)
Constructs a new StepExecutionStatusDetail object.
|
StepExecutionStatusDetail(java.lang.String state,
java.util.Date creationDateTime)
Constructs a new StepExecutionStatusDetail object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreationDateTime()
The creation date and time of the step.
|
java.util.Date |
getEndDateTime()
The completion date and time of the step.
|
java.lang.String |
getLastStateChangeReason()
A description of the step's current state.
|
java.util.Date |
getStartDateTime()
The start date and time of the step.
|
java.lang.String |
getState()
The state of the job flow step.
|
int |
hashCode() |
void |
setCreationDateTime(java.util.Date creationDateTime)
The creation date and time of the step.
|
void |
setEndDateTime(java.util.Date endDateTime)
The completion date and time of the step.
|
void |
setLastStateChangeReason(java.lang.String lastStateChangeReason)
A description of the step's current state.
|
void |
setStartDateTime(java.util.Date startDateTime)
The start date and time of the step.
|
void |
setState(StepExecutionState state)
The state of the job flow step.
|
void |
setState(java.lang.String state)
The state of the job flow step.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
StepExecutionStatusDetail |
withCreationDateTime(java.util.Date creationDateTime)
The creation date and time of the step.
|
StepExecutionStatusDetail |
withEndDateTime(java.util.Date endDateTime)
The completion date and time of the step.
|
StepExecutionStatusDetail |
withLastStateChangeReason(java.lang.String lastStateChangeReason)
A description of the step's current state.
|
StepExecutionStatusDetail |
withStartDateTime(java.util.Date startDateTime)
The start date and time of the step.
|
StepExecutionStatusDetail |
withState(StepExecutionState state)
The state of the job flow step.
|
StepExecutionStatusDetail |
withState(java.lang.String state)
The state of the job flow step.
|
public StepExecutionStatusDetail()
public StepExecutionStatusDetail(java.lang.String state,
java.util.Date creationDateTime)
state - The state of the job flow step.creationDateTime - The creation date and time of the step.public StepExecutionStatusDetail(StepExecutionState state, java.util.Date creationDateTime)
state - The state of the job flow step.creationDateTime - The creation date and time of the step.public java.lang.String getState()
Constraints:
Allowed Values: PENDING, RUNNING, CONTINUE, COMPLETED, CANCELLED, FAILED, INTERRUPTED
StepExecutionStatepublic void setState(java.lang.String state)
Constraints:
Allowed Values: PENDING, RUNNING, CONTINUE, COMPLETED, CANCELLED, FAILED, INTERRUPTED
state - The state of the job flow step.StepExecutionStatepublic StepExecutionStatusDetail withState(java.lang.String state)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: PENDING, RUNNING, CONTINUE, COMPLETED, CANCELLED, FAILED, INTERRUPTED
state - The state of the job flow step.StepExecutionStatepublic void setState(StepExecutionState state)
Constraints:
Allowed Values: PENDING, RUNNING, CONTINUE, COMPLETED, CANCELLED, FAILED, INTERRUPTED
state - The state of the job flow step.StepExecutionStatepublic StepExecutionStatusDetail withState(StepExecutionState state)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: PENDING, RUNNING, CONTINUE, COMPLETED, CANCELLED, FAILED, INTERRUPTED
state - The state of the job flow step.StepExecutionStatepublic java.util.Date getCreationDateTime()
public void setCreationDateTime(java.util.Date creationDateTime)
creationDateTime - The creation date and time of the step.public StepExecutionStatusDetail withCreationDateTime(java.util.Date creationDateTime)
Returns a reference to this object so that method calls can be chained together.
creationDateTime - The creation date and time of the step.public java.util.Date getStartDateTime()
public void setStartDateTime(java.util.Date startDateTime)
startDateTime - The start date and time of the step.public StepExecutionStatusDetail withStartDateTime(java.util.Date startDateTime)
Returns a reference to this object so that method calls can be chained together.
startDateTime - The start date and time of the step.public java.util.Date getEndDateTime()
public void setEndDateTime(java.util.Date endDateTime)
endDateTime - The completion date and time of the step.public StepExecutionStatusDetail withEndDateTime(java.util.Date endDateTime)
Returns a reference to this object so that method calls can be chained together.
endDateTime - The completion date and time of the step.public java.lang.String getLastStateChangeReason()
Constraints:
Length: 0 - 10280
Pattern: [ --�𐀀-\r\n\t]*
public void setLastStateChangeReason(java.lang.String lastStateChangeReason)
Constraints:
Length: 0 - 10280
Pattern: [ --�𐀀-\r\n\t]*
lastStateChangeReason - A description of the step's current state.public StepExecutionStatusDetail withLastStateChangeReason(java.lang.String lastStateChangeReason)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 10280
Pattern: [ --�𐀀-\r\n\t]*
lastStateChangeReason - A description of the step's current state.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object