public class FailWorkflowExecutionFailedEventAttributes
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Provides details of the FailWorkflowExecutionFailed
event.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
cause
The cause of the failure.
|
private java.lang.Long |
decisionTaskCompletedEventId
The ID of the
DecisionTaskCompleted event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. |
Constructor and Description |
---|
FailWorkflowExecutionFailedEventAttributes() |
Modifier and Type | Method and Description |
---|---|
FailWorkflowExecutionFailedEventAttributes |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCause()
The cause of the failure.
|
java.lang.Long |
getDecisionTaskCompletedEventId()
The ID of the
DecisionTaskCompleted event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. |
int |
hashCode() |
void |
setCause(FailWorkflowExecutionFailedCause cause)
The cause of the failure.
|
void |
setCause(java.lang.String cause)
The cause of the failure.
|
void |
setDecisionTaskCompletedEventId(java.lang.Long decisionTaskCompletedEventId)
The ID of the
DecisionTaskCompleted event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. |
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
FailWorkflowExecutionFailedEventAttributes |
withCause(FailWorkflowExecutionFailedCause cause)
The cause of the failure.
|
FailWorkflowExecutionFailedEventAttributes |
withCause(java.lang.String cause)
The cause of the failure.
|
FailWorkflowExecutionFailedEventAttributes |
withDecisionTaskCompletedEventId(java.lang.Long decisionTaskCompletedEventId)
The ID of the
DecisionTaskCompleted event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. |
private java.lang.String cause
The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.
private java.lang.Long decisionTaskCompletedEventId
The ID of the DecisionTaskCompleted
event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
public FailWorkflowExecutionFailedEventAttributes()
public void setCause(java.lang.String cause)
The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.
cause
- The cause of the failure. This information is generated by the
system and can be useful for diagnostic purposes. FailWorkflowExecutionFailedCause
public java.lang.String getCause()
The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.
FailWorkflowExecutionFailedCause
public FailWorkflowExecutionFailedEventAttributes withCause(java.lang.String cause)
The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.
cause
- The cause of the failure. This information is generated by the
system and can be useful for diagnostic purposes. FailWorkflowExecutionFailedCause
public void setCause(FailWorkflowExecutionFailedCause cause)
The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.
cause
- The cause of the failure. This information is generated by the
system and can be useful for diagnostic purposes. FailWorkflowExecutionFailedCause
public FailWorkflowExecutionFailedEventAttributes withCause(FailWorkflowExecutionFailedCause cause)
The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.
cause
- The cause of the failure. This information is generated by the
system and can be useful for diagnostic purposes. FailWorkflowExecutionFailedCause
public void setDecisionTaskCompletedEventId(java.lang.Long decisionTaskCompletedEventId)
The ID of the DecisionTaskCompleted
event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event
corresponding to the decision task that resulted in the
FailWorkflowExecution
decision to fail this
execution. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.public java.lang.Long getDecisionTaskCompletedEventId()
The ID of the DecisionTaskCompleted
event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
DecisionTaskCompleted
event
corresponding to the decision task that resulted in the
FailWorkflowExecution
decision to fail this
execution. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.public FailWorkflowExecutionFailedEventAttributes withDecisionTaskCompletedEventId(java.lang.Long decisionTaskCompletedEventId)
The ID of the DecisionTaskCompleted
event corresponding to
the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event
corresponding to the decision task that resulted in the
FailWorkflowExecution
decision to fail this
execution. This information can be useful for diagnosing problems
by tracing back the chain of events leading up to this event.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public FailWorkflowExecutionFailedEventAttributes clone()
clone
in class java.lang.Object