@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class HistoryEvent extends Object implements Serializable, Cloneable, StructuredPojo
Event within a workflow execution. A history event can be one of these types:
ActivityTaskCancelRequested
– A RequestCancelActivityTask
decision was received by the
system.
ActivityTaskCanceled
– The activity task was successfully canceled.
ActivityTaskCompleted
– An activity worker successfully completed an activity task by calling
RespondActivityTaskCompleted.
ActivityTaskFailed
– An activity worker failed an activity task by calling
RespondActivityTaskFailed.
ActivityTaskScheduled
– An activity task was scheduled for execution.
ActivityTaskStarted
– The scheduled activity task was dispatched to a worker.
ActivityTaskTimedOut
– The activity task timed out.
CancelTimerFailed
– Failed to process CancelTimer decision. This happens when the decision isn't
configured properly, for example no timer exists with the specified timer Id.
CancelWorkflowExecutionFailed
– A request to cancel a workflow execution failed.
ChildWorkflowExecutionCanceled
– A child workflow execution, started by this workflow execution, was
canceled and closed.
ChildWorkflowExecutionCompleted
– A child workflow execution, started by this workflow execution,
completed successfully and was closed.
ChildWorkflowExecutionFailed
– A child workflow execution, started by this workflow execution, failed to
complete successfully and was closed.
ChildWorkflowExecutionStarted
– A child workflow execution was successfully started.
ChildWorkflowExecutionTerminated
– A child workflow execution, started by this workflow execution, was
terminated.
ChildWorkflowExecutionTimedOut
– A child workflow execution, started by this workflow execution, timed
out and was closed.
CompleteWorkflowExecutionFailed
– The workflow execution failed to complete.
ContinueAsNewWorkflowExecutionFailed
– The workflow execution failed to complete after being continued
as a new workflow execution.
DecisionTaskCompleted
– The decider successfully completed a decision task by calling
RespondDecisionTaskCompleted.
DecisionTaskScheduled
– A decision task was scheduled for the workflow execution.
DecisionTaskStarted
– The decision task was dispatched to a decider.
DecisionTaskTimedOut
– The decision task timed out.
ExternalWorkflowExecutionCancelRequested
– Request to cancel an external workflow execution was
successfully delivered to the target execution.
ExternalWorkflowExecutionSignaled
– A signal, requested by this workflow execution, was successfully
delivered to the target external workflow execution.
FailWorkflowExecutionFailed
– A request to mark a workflow execution as failed, itself failed.
MarkerRecorded
– A marker was recorded in the workflow history as the result of a
RecordMarker
decision.
RecordMarkerFailed
– A RecordMarker
decision was returned as failed.
RequestCancelActivityTaskFailed
– Failed to process RequestCancelActivityTask decision. This happens
when the decision isn't configured properly.
RequestCancelExternalWorkflowExecutionFailed
– Request to cancel an external workflow execution failed.
RequestCancelExternalWorkflowExecutionInitiated
– A request was made to request the cancellation of an
external workflow execution.
ScheduleActivityTaskFailed
– Failed to process ScheduleActivityTask decision. This happens when the
decision isn't configured properly, for example the activity type specified isn't registered.
SignalExternalWorkflowExecutionFailed
– The request to signal an external workflow execution failed.
SignalExternalWorkflowExecutionInitiated
– A request to signal an external workflow was made.
StartActivityTaskFailed
– A scheduled activity task failed to start.
StartChildWorkflowExecutionFailed
– Failed to process StartChildWorkflowExecution decision. This happens
when the decision isn't configured properly, for example the workflow type specified isn't registered.
StartChildWorkflowExecutionInitiated
– A request was made to start a child workflow execution.
StartTimerFailed
– Failed to process StartTimer decision. This happens when the decision isn't
configured properly, for example a timer already exists with the specified timer Id.
TimerCanceled
– A timer, previously started for this workflow execution, was successfully canceled.
TimerFired
– A timer, previously started for this workflow execution, fired.
TimerStarted
– A timer was started for the workflow execution due to a StartTimer
decision.
WorkflowExecutionCancelRequested
– A request to cancel this workflow execution was made.
WorkflowExecutionCanceled
– The workflow execution was successfully canceled and closed.
WorkflowExecutionCompleted
– The workflow execution was closed due to successful completion.
WorkflowExecutionContinuedAsNew
– The workflow execution was closed and a new execution of the same type
was created with the same workflowId.
WorkflowExecutionFailed
– The workflow execution closed due to a failure.
WorkflowExecutionSignaled
– An external signal was received for the workflow execution.
WorkflowExecutionStarted
– The workflow execution was started.
WorkflowExecutionTerminated
– The workflow execution was terminated.
WorkflowExecutionTimedOut
– The workflow execution was closed because a time out was exceeded.
Constructor and Description |
---|
HistoryEvent() |
Modifier and Type | Method and Description |
---|---|
HistoryEvent |
clone() |
boolean |
equals(Object obj) |
ActivityTaskCanceledEventAttributes |
getActivityTaskCanceledEventAttributes()
If the event is of type
ActivityTaskCanceled then this member is set and provides detailed
information about the event. |
ActivityTaskCancelRequestedEventAttributes |
getActivityTaskCancelRequestedEventAttributes()
If the event is of type
ActivityTaskcancelRequested then this member is set and provides detailed
information about the event. |
ActivityTaskCompletedEventAttributes |
getActivityTaskCompletedEventAttributes()
If the event is of type
ActivityTaskCompleted then this member is set and provides detailed
information about the event. |
ActivityTaskFailedEventAttributes |
getActivityTaskFailedEventAttributes()
If the event is of type
ActivityTaskFailed then this member is set and provides detailed information
about the event. |
ActivityTaskScheduledEventAttributes |
getActivityTaskScheduledEventAttributes()
If the event is of type
ActivityTaskScheduled then this member is set and provides detailed
information about the event. |
ActivityTaskStartedEventAttributes |
getActivityTaskStartedEventAttributes()
If the event is of type
ActivityTaskStarted then this member is set and provides detailed
information about the event. |
ActivityTaskTimedOutEventAttributes |
getActivityTaskTimedOutEventAttributes()
If the event is of type
ActivityTaskTimedOut then this member is set and provides detailed
information about the event. |
CancelTimerFailedEventAttributes |
getCancelTimerFailedEventAttributes()
If the event is of type
CancelTimerFailed then this member is set and provides detailed information
about the event. |
CancelWorkflowExecutionFailedEventAttributes |
getCancelWorkflowExecutionFailedEventAttributes()
If the event is of type
CancelWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
ChildWorkflowExecutionCanceledEventAttributes |
getChildWorkflowExecutionCanceledEventAttributes()
If the event is of type
ChildWorkflowExecutionCanceled then this member is set and provides detailed
information about the event. |
ChildWorkflowExecutionCompletedEventAttributes |
getChildWorkflowExecutionCompletedEventAttributes()
If the event is of type
ChildWorkflowExecutionCompleted then this member is set and provides
detailed information about the event. |
ChildWorkflowExecutionFailedEventAttributes |
getChildWorkflowExecutionFailedEventAttributes()
If the event is of type
ChildWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
ChildWorkflowExecutionStartedEventAttributes |
getChildWorkflowExecutionStartedEventAttributes()
If the event is of type
ChildWorkflowExecutionStarted then this member is set and provides detailed
information about the event. |
ChildWorkflowExecutionTerminatedEventAttributes |
getChildWorkflowExecutionTerminatedEventAttributes()
If the event is of type
ChildWorkflowExecutionTerminated then this member is set and provides
detailed information about the event. |
ChildWorkflowExecutionTimedOutEventAttributes |
getChildWorkflowExecutionTimedOutEventAttributes()
If the event is of type
ChildWorkflowExecutionTimedOut then this member is set and provides detailed
information about the event. |
CompleteWorkflowExecutionFailedEventAttributes |
getCompleteWorkflowExecutionFailedEventAttributes()
If the event is of type
CompleteWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
ContinueAsNewWorkflowExecutionFailedEventAttributes |
getContinueAsNewWorkflowExecutionFailedEventAttributes()
If the event is of type
ContinueAsNewWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
DecisionTaskCompletedEventAttributes |
getDecisionTaskCompletedEventAttributes()
If the event is of type
DecisionTaskCompleted then this member is set and provides detailed
information about the event. |
DecisionTaskScheduledEventAttributes |
getDecisionTaskScheduledEventAttributes()
If the event is of type
DecisionTaskScheduled then this member is set and provides detailed
information about the event. |
DecisionTaskStartedEventAttributes |
getDecisionTaskStartedEventAttributes()
If the event is of type
DecisionTaskStarted then this member is set and provides detailed
information about the event. |
DecisionTaskTimedOutEventAttributes |
getDecisionTaskTimedOutEventAttributes()
If the event is of type
DecisionTaskTimedOut then this member is set and provides detailed
information about the event. |
Long |
getEventId()
The system generated ID of the event.
|
Date |
getEventTimestamp()
The date and time when the event occurred.
|
String |
getEventType()
The type of the history event.
|
ExternalWorkflowExecutionCancelRequestedEventAttributes |
getExternalWorkflowExecutionCancelRequestedEventAttributes()
If the event is of type
ExternalWorkflowExecutionCancelRequested then this member is set and
provides detailed information about the event. |
ExternalWorkflowExecutionSignaledEventAttributes |
getExternalWorkflowExecutionSignaledEventAttributes()
If the event is of type
ExternalWorkflowExecutionSignaled then this member is set and provides
detailed information about the event. |
FailWorkflowExecutionFailedEventAttributes |
getFailWorkflowExecutionFailedEventAttributes()
If the event is of type
FailWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
LambdaFunctionCompletedEventAttributes |
getLambdaFunctionCompletedEventAttributes()
Provides the details of the
LambdaFunctionCompleted event. |
LambdaFunctionFailedEventAttributes |
getLambdaFunctionFailedEventAttributes()
Provides the details of the
LambdaFunctionFailed event. |
LambdaFunctionScheduledEventAttributes |
getLambdaFunctionScheduledEventAttributes()
Provides the details of the
LambdaFunctionScheduled event. |
LambdaFunctionStartedEventAttributes |
getLambdaFunctionStartedEventAttributes()
Provides the details of the
LambdaFunctionStarted event. |
LambdaFunctionTimedOutEventAttributes |
getLambdaFunctionTimedOutEventAttributes()
Provides the details of the
LambdaFunctionTimedOut event. |
MarkerRecordedEventAttributes |
getMarkerRecordedEventAttributes()
If the event is of type
MarkerRecorded then this member is set and provides detailed information
about the event. |
RecordMarkerFailedEventAttributes |
getRecordMarkerFailedEventAttributes()
If the event is of type
DecisionTaskFailed then this member is set and provides detailed information
about the event. |
RequestCancelActivityTaskFailedEventAttributes |
getRequestCancelActivityTaskFailedEventAttributes()
If the event is of type
RequestCancelActivityTaskFailed then this member is set and provides
detailed information about the event. |
RequestCancelExternalWorkflowExecutionFailedEventAttributes |
getRequestCancelExternalWorkflowExecutionFailedEventAttributes()
If the event is of type
RequestCancelExternalWorkflowExecutionFailed then this member is set and
provides detailed information about the event. |
RequestCancelExternalWorkflowExecutionInitiatedEventAttributes |
getRequestCancelExternalWorkflowExecutionInitiatedEventAttributes()
If the event is of type
RequestCancelExternalWorkflowExecutionInitiated then this member is set and
provides detailed information about the event. |
ScheduleActivityTaskFailedEventAttributes |
getScheduleActivityTaskFailedEventAttributes()
If the event is of type
ScheduleActivityTaskFailed then this member is set and provides detailed
information about the event. |
ScheduleLambdaFunctionFailedEventAttributes |
getScheduleLambdaFunctionFailedEventAttributes()
Provides the details of the
ScheduleLambdaFunctionFailed event. |
SignalExternalWorkflowExecutionFailedEventAttributes |
getSignalExternalWorkflowExecutionFailedEventAttributes()
If the event is of type
SignalExternalWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
SignalExternalWorkflowExecutionInitiatedEventAttributes |
getSignalExternalWorkflowExecutionInitiatedEventAttributes()
If the event is of type
SignalExternalWorkflowExecutionInitiated then this member is set and
provides detailed information about the event. |
StartChildWorkflowExecutionFailedEventAttributes |
getStartChildWorkflowExecutionFailedEventAttributes()
If the event is of type
StartChildWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
StartChildWorkflowExecutionInitiatedEventAttributes |
getStartChildWorkflowExecutionInitiatedEventAttributes()
If the event is of type
StartChildWorkflowExecutionInitiated then this member is set and provides
detailed information about the event. |
StartLambdaFunctionFailedEventAttributes |
getStartLambdaFunctionFailedEventAttributes()
Provides the details of the
StartLambdaFunctionFailed event. |
StartTimerFailedEventAttributes |
getStartTimerFailedEventAttributes()
If the event is of type
StartTimerFailed then this member is set and provides detailed information
about the event. |
TimerCanceledEventAttributes |
getTimerCanceledEventAttributes()
If the event is of type
TimerCanceled then this member is set and provides detailed information
about the event. |
TimerFiredEventAttributes |
getTimerFiredEventAttributes()
If the event is of type
TimerFired then this member is set and provides detailed information about
the event. |
TimerStartedEventAttributes |
getTimerStartedEventAttributes()
If the event is of type
TimerStarted then this member is set and provides detailed information about
the event. |
WorkflowExecutionCanceledEventAttributes |
getWorkflowExecutionCanceledEventAttributes()
If the event is of type
WorkflowExecutionCanceled then this member is set and provides detailed
information about the event. |
WorkflowExecutionCancelRequestedEventAttributes |
getWorkflowExecutionCancelRequestedEventAttributes()
If the event is of type
WorkflowExecutionCancelRequested then this member is set and provides
detailed information about the event. |
WorkflowExecutionCompletedEventAttributes |
getWorkflowExecutionCompletedEventAttributes()
If the event is of type
WorkflowExecutionCompleted then this member is set and provides detailed
information about the event. |
WorkflowExecutionContinuedAsNewEventAttributes |
getWorkflowExecutionContinuedAsNewEventAttributes()
If the event is of type
WorkflowExecutionContinuedAsNew then this member is set and provides
detailed information about the event. |
WorkflowExecutionFailedEventAttributes |
getWorkflowExecutionFailedEventAttributes()
If the event is of type
WorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
WorkflowExecutionSignaledEventAttributes |
getWorkflowExecutionSignaledEventAttributes()
If the event is of type
WorkflowExecutionSignaled then this member is set and provides detailed
information about the event. |
WorkflowExecutionStartedEventAttributes |
getWorkflowExecutionStartedEventAttributes()
If the event is of type
WorkflowExecutionStarted then this member is set and provides detailed
information about the event. |
WorkflowExecutionTerminatedEventAttributes |
getWorkflowExecutionTerminatedEventAttributes()
If the event is of type
WorkflowExecutionTerminated then this member is set and provides detailed
information about the event. |
WorkflowExecutionTimedOutEventAttributes |
getWorkflowExecutionTimedOutEventAttributes()
If the event is of type
WorkflowExecutionTimedOut then this member is set and provides detailed
information about the event. |
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes)
If the event is of type
ActivityTaskCanceled then this member is set and provides detailed
information about the event. |
void |
setActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes)
If the event is of type
ActivityTaskcancelRequested then this member is set and provides detailed
information about the event. |
void |
setActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes)
If the event is of type
ActivityTaskCompleted then this member is set and provides detailed
information about the event. |
void |
setActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes)
If the event is of type
ActivityTaskFailed then this member is set and provides detailed information
about the event. |
void |
setActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes)
If the event is of type
ActivityTaskScheduled then this member is set and provides detailed
information about the event. |
void |
setActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes)
If the event is of type
ActivityTaskStarted then this member is set and provides detailed
information about the event. |
void |
setActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes)
If the event is of type
ActivityTaskTimedOut then this member is set and provides detailed
information about the event. |
void |
setCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes)
If the event is of type
CancelTimerFailed then this member is set and provides detailed information
about the event. |
void |
setCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes)
If the event is of type
CancelWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
void |
setChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes)
If the event is of type
ChildWorkflowExecutionCanceled then this member is set and provides detailed
information about the event. |
void |
setChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes)
If the event is of type
ChildWorkflowExecutionCompleted then this member is set and provides
detailed information about the event. |
void |
setChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes)
If the event is of type
ChildWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
void |
setChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes)
If the event is of type
ChildWorkflowExecutionStarted then this member is set and provides detailed
information about the event. |
void |
setChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes)
If the event is of type
ChildWorkflowExecutionTerminated then this member is set and provides
detailed information about the event. |
void |
setChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes)
If the event is of type
ChildWorkflowExecutionTimedOut then this member is set and provides detailed
information about the event. |
void |
setCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes)
If the event is of type
CompleteWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
void |
setContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes)
If the event is of type
ContinueAsNewWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
void |
setDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes)
If the event is of type
DecisionTaskCompleted then this member is set and provides detailed
information about the event. |
void |
setDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes)
If the event is of type
DecisionTaskScheduled then this member is set and provides detailed
information about the event. |
void |
setDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes)
If the event is of type
DecisionTaskStarted then this member is set and provides detailed
information about the event. |
void |
setDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes)
If the event is of type
DecisionTaskTimedOut then this member is set and provides detailed
information about the event. |
void |
setEventId(Long eventId)
The system generated ID of the event.
|
void |
setEventTimestamp(Date eventTimestamp)
The date and time when the event occurred.
|
void |
setEventType(EventType eventType)
The type of the history event.
|
void |
setEventType(String eventType)
The type of the history event.
|
void |
setExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes)
If the event is of type
ExternalWorkflowExecutionCancelRequested then this member is set and
provides detailed information about the event. |
void |
setExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes)
If the event is of type
ExternalWorkflowExecutionSignaled then this member is set and provides
detailed information about the event. |
void |
setFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes)
If the event is of type
FailWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
void |
setLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes)
Provides the details of the
LambdaFunctionCompleted event. |
void |
setLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes)
Provides the details of the
LambdaFunctionFailed event. |
void |
setLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes)
Provides the details of the
LambdaFunctionScheduled event. |
void |
setLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes)
Provides the details of the
LambdaFunctionStarted event. |
void |
setLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes)
Provides the details of the
LambdaFunctionTimedOut event. |
void |
setMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes)
If the event is of type
MarkerRecorded then this member is set and provides detailed information
about the event. |
void |
setRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes)
If the event is of type
DecisionTaskFailed then this member is set and provides detailed information
about the event. |
void |
setRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes)
If the event is of type
RequestCancelActivityTaskFailed then this member is set and provides
detailed information about the event. |
void |
setRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes)
If the event is of type
RequestCancelExternalWorkflowExecutionFailed then this member is set and
provides detailed information about the event. |
void |
setRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type
RequestCancelExternalWorkflowExecutionInitiated then this member is set and
provides detailed information about the event. |
void |
setScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes)
If the event is of type
ScheduleActivityTaskFailed then this member is set and provides detailed
information about the event. |
void |
setScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes)
Provides the details of the
ScheduleLambdaFunctionFailed event. |
void |
setSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes)
If the event is of type
SignalExternalWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
void |
setSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type
SignalExternalWorkflowExecutionInitiated then this member is set and
provides detailed information about the event. |
void |
setStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes)
If the event is of type
StartChildWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
void |
setStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes)
If the event is of type
StartChildWorkflowExecutionInitiated then this member is set and provides
detailed information about the event. |
void |
setStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes)
Provides the details of the
StartLambdaFunctionFailed event. |
void |
setStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes)
If the event is of type
StartTimerFailed then this member is set and provides detailed information
about the event. |
void |
setTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes)
If the event is of type
TimerCanceled then this member is set and provides detailed information
about the event. |
void |
setTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes)
If the event is of type
TimerFired then this member is set and provides detailed information about
the event. |
void |
setTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes)
If the event is of type
TimerStarted then this member is set and provides detailed information about
the event. |
void |
setWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes)
If the event is of type
WorkflowExecutionCanceled then this member is set and provides detailed
information about the event. |
void |
setWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes)
If the event is of type
WorkflowExecutionCancelRequested then this member is set and provides
detailed information about the event. |
void |
setWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes)
If the event is of type
WorkflowExecutionCompleted then this member is set and provides detailed
information about the event. |
void |
setWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes)
If the event is of type
WorkflowExecutionContinuedAsNew then this member is set and provides
detailed information about the event. |
void |
setWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes)
If the event is of type
WorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
void |
setWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes)
If the event is of type
WorkflowExecutionSignaled then this member is set and provides detailed
information about the event. |
void |
setWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes)
If the event is of type
WorkflowExecutionStarted then this member is set and provides detailed
information about the event. |
void |
setWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes)
If the event is of type
WorkflowExecutionTerminated then this member is set and provides detailed
information about the event. |
void |
setWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes)
If the event is of type
WorkflowExecutionTimedOut then this member is set and provides detailed
information about the event. |
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
HistoryEvent |
withActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes)
If the event is of type
ActivityTaskCanceled then this member is set and provides detailed
information about the event. |
HistoryEvent |
withActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes)
If the event is of type
ActivityTaskcancelRequested then this member is set and provides detailed
information about the event. |
HistoryEvent |
withActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes)
If the event is of type
ActivityTaskCompleted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes)
If the event is of type
ActivityTaskFailed then this member is set and provides detailed information
about the event. |
HistoryEvent |
withActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes)
If the event is of type
ActivityTaskScheduled then this member is set and provides detailed
information about the event. |
HistoryEvent |
withActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes)
If the event is of type
ActivityTaskStarted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes)
If the event is of type
ActivityTaskTimedOut then this member is set and provides detailed
information about the event. |
HistoryEvent |
withCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes)
If the event is of type
CancelTimerFailed then this member is set and provides detailed information
about the event. |
HistoryEvent |
withCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes)
If the event is of type
CancelWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
HistoryEvent |
withChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes)
If the event is of type
ChildWorkflowExecutionCanceled then this member is set and provides detailed
information about the event. |
HistoryEvent |
withChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes)
If the event is of type
ChildWorkflowExecutionCompleted then this member is set and provides
detailed information about the event. |
HistoryEvent |
withChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes)
If the event is of type
ChildWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
HistoryEvent |
withChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes)
If the event is of type
ChildWorkflowExecutionStarted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes)
If the event is of type
ChildWorkflowExecutionTerminated then this member is set and provides
detailed information about the event. |
HistoryEvent |
withChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes)
If the event is of type
ChildWorkflowExecutionTimedOut then this member is set and provides detailed
information about the event. |
HistoryEvent |
withCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes)
If the event is of type
CompleteWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
HistoryEvent |
withContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes)
If the event is of type
ContinueAsNewWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
HistoryEvent |
withDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes)
If the event is of type
DecisionTaskCompleted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes)
If the event is of type
DecisionTaskScheduled then this member is set and provides detailed
information about the event. |
HistoryEvent |
withDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes)
If the event is of type
DecisionTaskStarted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes)
If the event is of type
DecisionTaskTimedOut then this member is set and provides detailed
information about the event. |
HistoryEvent |
withEventId(Long eventId)
The system generated ID of the event.
|
HistoryEvent |
withEventTimestamp(Date eventTimestamp)
The date and time when the event occurred.
|
HistoryEvent |
withEventType(EventType eventType)
The type of the history event.
|
HistoryEvent |
withEventType(String eventType)
The type of the history event.
|
HistoryEvent |
withExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes)
If the event is of type
ExternalWorkflowExecutionCancelRequested then this member is set and
provides detailed information about the event. |
HistoryEvent |
withExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes)
If the event is of type
ExternalWorkflowExecutionSignaled then this member is set and provides
detailed information about the event. |
HistoryEvent |
withFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes)
If the event is of type
FailWorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
HistoryEvent |
withLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes)
Provides the details of the
LambdaFunctionCompleted event. |
HistoryEvent |
withLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes)
Provides the details of the
LambdaFunctionFailed event. |
HistoryEvent |
withLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes)
Provides the details of the
LambdaFunctionScheduled event. |
HistoryEvent |
withLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes)
Provides the details of the
LambdaFunctionStarted event. |
HistoryEvent |
withLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes)
Provides the details of the
LambdaFunctionTimedOut event. |
HistoryEvent |
withMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes)
If the event is of type
MarkerRecorded then this member is set and provides detailed information
about the event. |
HistoryEvent |
withRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes)
If the event is of type
DecisionTaskFailed then this member is set and provides detailed information
about the event. |
HistoryEvent |
withRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes)
If the event is of type
RequestCancelActivityTaskFailed then this member is set and provides
detailed information about the event. |
HistoryEvent |
withRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes)
If the event is of type
RequestCancelExternalWorkflowExecutionFailed then this member is set and
provides detailed information about the event. |
HistoryEvent |
withRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type
RequestCancelExternalWorkflowExecutionInitiated then this member is set and
provides detailed information about the event. |
HistoryEvent |
withScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes)
If the event is of type
ScheduleActivityTaskFailed then this member is set and provides detailed
information about the event. |
HistoryEvent |
withScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes)
Provides the details of the
ScheduleLambdaFunctionFailed event. |
HistoryEvent |
withSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes)
If the event is of type
SignalExternalWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
HistoryEvent |
withSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type
SignalExternalWorkflowExecutionInitiated then this member is set and
provides detailed information about the event. |
HistoryEvent |
withStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes)
If the event is of type
StartChildWorkflowExecutionFailed then this member is set and provides
detailed information about the event. |
HistoryEvent |
withStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes)
If the event is of type
StartChildWorkflowExecutionInitiated then this member is set and provides
detailed information about the event. |
HistoryEvent |
withStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes)
Provides the details of the
StartLambdaFunctionFailed event. |
HistoryEvent |
withStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes)
If the event is of type
StartTimerFailed then this member is set and provides detailed information
about the event. |
HistoryEvent |
withTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes)
If the event is of type
TimerCanceled then this member is set and provides detailed information
about the event. |
HistoryEvent |
withTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes)
If the event is of type
TimerFired then this member is set and provides detailed information about
the event. |
HistoryEvent |
withTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes)
If the event is of type
TimerStarted then this member is set and provides detailed information about
the event. |
HistoryEvent |
withWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes)
If the event is of type
WorkflowExecutionCanceled then this member is set and provides detailed
information about the event. |
HistoryEvent |
withWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes)
If the event is of type
WorkflowExecutionCancelRequested then this member is set and provides
detailed information about the event. |
HistoryEvent |
withWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes)
If the event is of type
WorkflowExecutionCompleted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes)
If the event is of type
WorkflowExecutionContinuedAsNew then this member is set and provides
detailed information about the event. |
HistoryEvent |
withWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes)
If the event is of type
WorkflowExecutionFailed then this member is set and provides detailed
information about the event. |
HistoryEvent |
withWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes)
If the event is of type
WorkflowExecutionSignaled then this member is set and provides detailed
information about the event. |
HistoryEvent |
withWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes)
If the event is of type
WorkflowExecutionStarted then this member is set and provides detailed
information about the event. |
HistoryEvent |
withWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes)
If the event is of type
WorkflowExecutionTerminated then this member is set and provides detailed
information about the event. |
HistoryEvent |
withWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes)
If the event is of type
WorkflowExecutionTimedOut then this member is set and provides detailed
information about the event. |
public void setEventTimestamp(Date eventTimestamp)
The date and time when the event occurred.
eventTimestamp
- The date and time when the event occurred.public Date getEventTimestamp()
The date and time when the event occurred.
public HistoryEvent withEventTimestamp(Date eventTimestamp)
The date and time when the event occurred.
eventTimestamp
- The date and time when the event occurred.public void setEventType(String eventType)
The type of the history event.
eventType
- The type of the history event.EventType
public String getEventType()
The type of the history event.
EventType
public HistoryEvent withEventType(String eventType)
The type of the history event.
eventType
- The type of the history event.EventType
public void setEventType(EventType eventType)
The type of the history event.
eventType
- The type of the history event.EventType
public HistoryEvent withEventType(EventType eventType)
The type of the history event.
eventType
- The type of the history event.EventType
public void setEventId(Long eventId)
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
eventId
- The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution
history.public Long getEventId()
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
public HistoryEvent withEventId(Long eventId)
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
eventId
- The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution
history.public void setWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes)
If the event is of type WorkflowExecutionStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionStartedEventAttributes
- If the event is of type WorkflowExecutionStarted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionStartedEventAttributes getWorkflowExecutionStartedEventAttributes()
If the event is of type WorkflowExecutionStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionStarted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes)
If the event is of type WorkflowExecutionStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionStartedEventAttributes
- If the event is of type WorkflowExecutionStarted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes)
If the event is of type WorkflowExecutionCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionCompletedEventAttributes
- If the event is of type WorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionCompletedEventAttributes getWorkflowExecutionCompletedEventAttributes()
If the event is of type WorkflowExecutionCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes)
If the event is of type WorkflowExecutionCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionCompletedEventAttributes
- If the event is of type WorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes)
If the event is of type CompleteWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
completeWorkflowExecutionFailedEventAttributes
- If the event is of type CompleteWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public CompleteWorkflowExecutionFailedEventAttributes getCompleteWorkflowExecutionFailedEventAttributes()
If the event is of type CompleteWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
CompleteWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes)
If the event is of type CompleteWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
completeWorkflowExecutionFailedEventAttributes
- If the event is of type CompleteWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes)
If the event is of type WorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionFailedEventAttributes
- If the event is of type WorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public WorkflowExecutionFailedEventAttributes getWorkflowExecutionFailedEventAttributes()
If the event is of type WorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes)
If the event is of type WorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionFailedEventAttributes
- If the event is of type WorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes)
If the event is of type FailWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
failWorkflowExecutionFailedEventAttributes
- If the event is of type FailWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public FailWorkflowExecutionFailedEventAttributes getFailWorkflowExecutionFailedEventAttributes()
If the event is of type FailWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
FailWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes)
If the event is of type FailWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
failWorkflowExecutionFailedEventAttributes
- If the event is of type FailWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes)
If the event is of type WorkflowExecutionTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionTimedOutEventAttributes
- If the event is of type WorkflowExecutionTimedOut
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionTimedOutEventAttributes getWorkflowExecutionTimedOutEventAttributes()
If the event is of type WorkflowExecutionTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionTimedOut
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes)
If the event is of type WorkflowExecutionTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionTimedOutEventAttributes
- If the event is of type WorkflowExecutionTimedOut
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes)
If the event is of type WorkflowExecutionCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionCanceledEventAttributes
- If the event is of type WorkflowExecutionCanceled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionCanceledEventAttributes getWorkflowExecutionCanceledEventAttributes()
If the event is of type WorkflowExecutionCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionCanceled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes)
If the event is of type WorkflowExecutionCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionCanceledEventAttributes
- If the event is of type WorkflowExecutionCanceled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes)
If the event is of type CancelWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
cancelWorkflowExecutionFailedEventAttributes
- If the event is of type CancelWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public CancelWorkflowExecutionFailedEventAttributes getCancelWorkflowExecutionFailedEventAttributes()
If the event is of type CancelWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
CancelWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes)
If the event is of type CancelWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
cancelWorkflowExecutionFailedEventAttributes
- If the event is of type CancelWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes)
If the event is of type WorkflowExecutionContinuedAsNew
then this member is set and provides
detailed information about the event. It isn't set for other event types.
workflowExecutionContinuedAsNewEventAttributes
- If the event is of type WorkflowExecutionContinuedAsNew
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionContinuedAsNewEventAttributes getWorkflowExecutionContinuedAsNewEventAttributes()
If the event is of type WorkflowExecutionContinuedAsNew
then this member is set and provides
detailed information about the event. It isn't set for other event types.
WorkflowExecutionContinuedAsNew
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes)
If the event is of type WorkflowExecutionContinuedAsNew
then this member is set and provides
detailed information about the event. It isn't set for other event types.
workflowExecutionContinuedAsNewEventAttributes
- If the event is of type WorkflowExecutionContinuedAsNew
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes)
If the event is of type ContinueAsNewWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
continueAsNewWorkflowExecutionFailedEventAttributes
- If the event is of type ContinueAsNewWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public ContinueAsNewWorkflowExecutionFailedEventAttributes getContinueAsNewWorkflowExecutionFailedEventAttributes()
If the event is of type ContinueAsNewWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
ContinueAsNewWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes)
If the event is of type ContinueAsNewWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
continueAsNewWorkflowExecutionFailedEventAttributes
- If the event is of type ContinueAsNewWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes)
If the event is of type WorkflowExecutionTerminated
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionTerminatedEventAttributes
- If the event is of type WorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionTerminatedEventAttributes getWorkflowExecutionTerminatedEventAttributes()
If the event is of type WorkflowExecutionTerminated
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes)
If the event is of type WorkflowExecutionTerminated
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionTerminatedEventAttributes
- If the event is of type WorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes)
If the event is of type WorkflowExecutionCancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.
workflowExecutionCancelRequestedEventAttributes
- If the event is of type WorkflowExecutionCancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionCancelRequestedEventAttributes getWorkflowExecutionCancelRequestedEventAttributes()
If the event is of type WorkflowExecutionCancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.
WorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes)
If the event is of type WorkflowExecutionCancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.
workflowExecutionCancelRequestedEventAttributes
- If the event is of type WorkflowExecutionCancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes)
If the event is of type DecisionTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskScheduledEventAttributes
- If the event is of type DecisionTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public DecisionTaskScheduledEventAttributes getDecisionTaskScheduledEventAttributes()
If the event is of type DecisionTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
DecisionTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes)
If the event is of type DecisionTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskScheduledEventAttributes
- If the event is of type DecisionTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes)
If the event is of type DecisionTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskStartedEventAttributes
- If the event is of type DecisionTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public DecisionTaskStartedEventAttributes getDecisionTaskStartedEventAttributes()
If the event is of type DecisionTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
DecisionTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes)
If the event is of type DecisionTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskStartedEventAttributes
- If the event is of type DecisionTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes)
If the event is of type DecisionTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskCompletedEventAttributes
- If the event is of type DecisionTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public DecisionTaskCompletedEventAttributes getDecisionTaskCompletedEventAttributes()
If the event is of type DecisionTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
DecisionTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes)
If the event is of type DecisionTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskCompletedEventAttributes
- If the event is of type DecisionTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes)
If the event is of type DecisionTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskTimedOutEventAttributes
- If the event is of type DecisionTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.public DecisionTaskTimedOutEventAttributes getDecisionTaskTimedOutEventAttributes()
If the event is of type DecisionTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
DecisionTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes)
If the event is of type DecisionTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
decisionTaskTimedOutEventAttributes
- If the event is of type DecisionTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes)
If the event is of type ActivityTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskScheduledEventAttributes
- If the event is of type ActivityTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public ActivityTaskScheduledEventAttributes getActivityTaskScheduledEventAttributes()
If the event is of type ActivityTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ActivityTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes)
If the event is of type ActivityTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskScheduledEventAttributes
- If the event is of type ActivityTaskScheduled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes)
If the event is of type ActivityTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskStartedEventAttributes
- If the event is of type ActivityTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public ActivityTaskStartedEventAttributes getActivityTaskStartedEventAttributes()
If the event is of type ActivityTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ActivityTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes)
If the event is of type ActivityTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskStartedEventAttributes
- If the event is of type ActivityTaskStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes)
If the event is of type ActivityTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskCompletedEventAttributes
- If the event is of type ActivityTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public ActivityTaskCompletedEventAttributes getActivityTaskCompletedEventAttributes()
If the event is of type ActivityTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ActivityTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes)
If the event is of type ActivityTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskCompletedEventAttributes
- If the event is of type ActivityTaskCompleted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes)
If the event is of type ActivityTaskFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
activityTaskFailedEventAttributes
- If the event is of type ActivityTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public ActivityTaskFailedEventAttributes getActivityTaskFailedEventAttributes()
If the event is of type ActivityTaskFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
ActivityTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes)
If the event is of type ActivityTaskFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
activityTaskFailedEventAttributes
- If the event is of type ActivityTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes)
If the event is of type ActivityTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskTimedOutEventAttributes
- If the event is of type ActivityTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.public ActivityTaskTimedOutEventAttributes getActivityTaskTimedOutEventAttributes()
If the event is of type ActivityTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ActivityTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes)
If the event is of type ActivityTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskTimedOutEventAttributes
- If the event is of type ActivityTaskTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes)
If the event is of type ActivityTaskCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskCanceledEventAttributes
- If the event is of type ActivityTaskCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public ActivityTaskCanceledEventAttributes getActivityTaskCanceledEventAttributes()
If the event is of type ActivityTaskCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ActivityTaskCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes)
If the event is of type ActivityTaskCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskCanceledEventAttributes
- If the event is of type ActivityTaskCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes)
If the event is of type ActivityTaskcancelRequested
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskCancelRequestedEventAttributes
- If the event is of type ActivityTaskcancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ActivityTaskCancelRequestedEventAttributes getActivityTaskCancelRequestedEventAttributes()
If the event is of type ActivityTaskcancelRequested
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ActivityTaskcancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes)
If the event is of type ActivityTaskcancelRequested
then this member is set and provides detailed
information about the event. It isn't set for other event types.
activityTaskCancelRequestedEventAttributes
- If the event is of type ActivityTaskcancelRequested
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes)
If the event is of type WorkflowExecutionSignaled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionSignaledEventAttributes
- If the event is of type WorkflowExecutionSignaled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public WorkflowExecutionSignaledEventAttributes getWorkflowExecutionSignaledEventAttributes()
If the event is of type WorkflowExecutionSignaled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
WorkflowExecutionSignaled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes)
If the event is of type WorkflowExecutionSignaled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
workflowExecutionSignaledEventAttributes
- If the event is of type WorkflowExecutionSignaled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes)
If the event is of type MarkerRecorded
then this member is set and provides detailed information
about the event. It isn't set for other event types.
markerRecordedEventAttributes
- If the event is of type MarkerRecorded
then this member is set and provides detailed
information about the event. It isn't set for other event types.public MarkerRecordedEventAttributes getMarkerRecordedEventAttributes()
If the event is of type MarkerRecorded
then this member is set and provides detailed information
about the event. It isn't set for other event types.
MarkerRecorded
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes)
If the event is of type MarkerRecorded
then this member is set and provides detailed information
about the event. It isn't set for other event types.
markerRecordedEventAttributes
- If the event is of type MarkerRecorded
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes)
If the event is of type DecisionTaskFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
recordMarkerFailedEventAttributes
- If the event is of type DecisionTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public RecordMarkerFailedEventAttributes getRecordMarkerFailedEventAttributes()
If the event is of type DecisionTaskFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
DecisionTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes)
If the event is of type DecisionTaskFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
recordMarkerFailedEventAttributes
- If the event is of type DecisionTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes)
If the event is of type TimerStarted
then this member is set and provides detailed information about
the event. It isn't set for other event types.
timerStartedEventAttributes
- If the event is of type TimerStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public TimerStartedEventAttributes getTimerStartedEventAttributes()
If the event is of type TimerStarted
then this member is set and provides detailed information about
the event. It isn't set for other event types.
TimerStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes)
If the event is of type TimerStarted
then this member is set and provides detailed information about
the event. It isn't set for other event types.
timerStartedEventAttributes
- If the event is of type TimerStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes)
If the event is of type TimerFired
then this member is set and provides detailed information about
the event. It isn't set for other event types.
timerFiredEventAttributes
- If the event is of type TimerFired
then this member is set and provides detailed information
about the event. It isn't set for other event types.public TimerFiredEventAttributes getTimerFiredEventAttributes()
If the event is of type TimerFired
then this member is set and provides detailed information about
the event. It isn't set for other event types.
TimerFired
then this member is set and provides detailed information
about the event. It isn't set for other event types.public HistoryEvent withTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes)
If the event is of type TimerFired
then this member is set and provides detailed information about
the event. It isn't set for other event types.
timerFiredEventAttributes
- If the event is of type TimerFired
then this member is set and provides detailed information
about the event. It isn't set for other event types.public void setTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes)
If the event is of type TimerCanceled
then this member is set and provides detailed information
about the event. It isn't set for other event types.
timerCanceledEventAttributes
- If the event is of type TimerCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public TimerCanceledEventAttributes getTimerCanceledEventAttributes()
If the event is of type TimerCanceled
then this member is set and provides detailed information
about the event. It isn't set for other event types.
TimerCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes)
If the event is of type TimerCanceled
then this member is set and provides detailed information
about the event. It isn't set for other event types.
timerCanceledEventAttributes
- If the event is of type TimerCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes)
If the event is of type StartChildWorkflowExecutionInitiated
then this member is set and provides
detailed information about the event. It isn't set for other event types.
startChildWorkflowExecutionInitiatedEventAttributes
- If the event is of type StartChildWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public StartChildWorkflowExecutionInitiatedEventAttributes getStartChildWorkflowExecutionInitiatedEventAttributes()
If the event is of type StartChildWorkflowExecutionInitiated
then this member is set and provides
detailed information about the event. It isn't set for other event types.
StartChildWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes)
If the event is of type StartChildWorkflowExecutionInitiated
then this member is set and provides
detailed information about the event. It isn't set for other event types.
startChildWorkflowExecutionInitiatedEventAttributes
- If the event is of type StartChildWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes)
If the event is of type ChildWorkflowExecutionStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionStartedEventAttributes
- If the event is of type ChildWorkflowExecutionStarted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ChildWorkflowExecutionStartedEventAttributes getChildWorkflowExecutionStartedEventAttributes()
If the event is of type ChildWorkflowExecutionStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ChildWorkflowExecutionStarted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes)
If the event is of type ChildWorkflowExecutionStarted
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionStartedEventAttributes
- If the event is of type ChildWorkflowExecutionStarted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes)
If the event is of type ChildWorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.
childWorkflowExecutionCompletedEventAttributes
- If the event is of type ChildWorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ChildWorkflowExecutionCompletedEventAttributes getChildWorkflowExecutionCompletedEventAttributes()
If the event is of type ChildWorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.
ChildWorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes)
If the event is of type ChildWorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.
childWorkflowExecutionCompletedEventAttributes
- If the event is of type ChildWorkflowExecutionCompleted
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes)
If the event is of type ChildWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionFailedEventAttributes
- If the event is of type ChildWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ChildWorkflowExecutionFailedEventAttributes getChildWorkflowExecutionFailedEventAttributes()
If the event is of type ChildWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ChildWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes)
If the event is of type ChildWorkflowExecutionFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionFailedEventAttributes
- If the event is of type ChildWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes)
If the event is of type ChildWorkflowExecutionTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionTimedOutEventAttributes
- If the event is of type ChildWorkflowExecutionTimedOut
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ChildWorkflowExecutionTimedOutEventAttributes getChildWorkflowExecutionTimedOutEventAttributes()
If the event is of type ChildWorkflowExecutionTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ChildWorkflowExecutionTimedOut
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes)
If the event is of type ChildWorkflowExecutionTimedOut
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionTimedOutEventAttributes
- If the event is of type ChildWorkflowExecutionTimedOut
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes)
If the event is of type ChildWorkflowExecutionCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionCanceledEventAttributes
- If the event is of type ChildWorkflowExecutionCanceled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ChildWorkflowExecutionCanceledEventAttributes getChildWorkflowExecutionCanceledEventAttributes()
If the event is of type ChildWorkflowExecutionCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ChildWorkflowExecutionCanceled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes)
If the event is of type ChildWorkflowExecutionCanceled
then this member is set and provides detailed
information about the event. It isn't set for other event types.
childWorkflowExecutionCanceledEventAttributes
- If the event is of type ChildWorkflowExecutionCanceled
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes)
If the event is of type ChildWorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.
childWorkflowExecutionTerminatedEventAttributes
- If the event is of type ChildWorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ChildWorkflowExecutionTerminatedEventAttributes getChildWorkflowExecutionTerminatedEventAttributes()
If the event is of type ChildWorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.
ChildWorkflowExecutionTerminated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes)
If the event is of type ChildWorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.
childWorkflowExecutionTerminatedEventAttributes
- If the event is of type ChildWorkflowExecutionTerminated
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type SignalExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.
signalExternalWorkflowExecutionInitiatedEventAttributes
- If the event is of type SignalExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public SignalExternalWorkflowExecutionInitiatedEventAttributes getSignalExternalWorkflowExecutionInitiatedEventAttributes()
If the event is of type SignalExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.
SignalExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type SignalExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.
signalExternalWorkflowExecutionInitiatedEventAttributes
- If the event is of type SignalExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes)
If the event is of type ExternalWorkflowExecutionSignaled
then this member is set and provides
detailed information about the event. It isn't set for other event types.
externalWorkflowExecutionSignaledEventAttributes
- If the event is of type ExternalWorkflowExecutionSignaled
then this member is set and
provides detailed information about the event. It isn't set for other event types.public ExternalWorkflowExecutionSignaledEventAttributes getExternalWorkflowExecutionSignaledEventAttributes()
If the event is of type ExternalWorkflowExecutionSignaled
then this member is set and provides
detailed information about the event. It isn't set for other event types.
ExternalWorkflowExecutionSignaled
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes)
If the event is of type ExternalWorkflowExecutionSignaled
then this member is set and provides
detailed information about the event. It isn't set for other event types.
externalWorkflowExecutionSignaledEventAttributes
- If the event is of type ExternalWorkflowExecutionSignaled
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes)
If the event is of type SignalExternalWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
signalExternalWorkflowExecutionFailedEventAttributes
- If the event is of type SignalExternalWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public SignalExternalWorkflowExecutionFailedEventAttributes getSignalExternalWorkflowExecutionFailedEventAttributes()
If the event is of type SignalExternalWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
SignalExternalWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes)
If the event is of type SignalExternalWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
signalExternalWorkflowExecutionFailedEventAttributes
- If the event is of type SignalExternalWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes)
If the event is of type ExternalWorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.
externalWorkflowExecutionCancelRequestedEventAttributes
- If the event is of type ExternalWorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.public ExternalWorkflowExecutionCancelRequestedEventAttributes getExternalWorkflowExecutionCancelRequestedEventAttributes()
If the event is of type ExternalWorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.
ExternalWorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes)
If the event is of type ExternalWorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.
externalWorkflowExecutionCancelRequestedEventAttributes
- If the event is of type ExternalWorkflowExecutionCancelRequested
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type RequestCancelExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.
requestCancelExternalWorkflowExecutionInitiatedEventAttributes
- If the event is of type RequestCancelExternalWorkflowExecutionInitiated
then this member is
set and provides detailed information about the event. It isn't set for other event types.public RequestCancelExternalWorkflowExecutionInitiatedEventAttributes getRequestCancelExternalWorkflowExecutionInitiatedEventAttributes()
If the event is of type RequestCancelExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.
RequestCancelExternalWorkflowExecutionInitiated
then this member is
set and provides detailed information about the event. It isn't set for other event types.public HistoryEvent withRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes)
If the event is of type RequestCancelExternalWorkflowExecutionInitiated
then this member is set and
provides detailed information about the event. It isn't set for other event types.
requestCancelExternalWorkflowExecutionInitiatedEventAttributes
- If the event is of type RequestCancelExternalWorkflowExecutionInitiated
then this member is
set and provides detailed information about the event. It isn't set for other event types.public void setRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes)
If the event is of type RequestCancelExternalWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.
requestCancelExternalWorkflowExecutionFailedEventAttributes
- If the event is of type RequestCancelExternalWorkflowExecutionFailed
then this member is set
and provides detailed information about the event. It isn't set for other event types.public RequestCancelExternalWorkflowExecutionFailedEventAttributes getRequestCancelExternalWorkflowExecutionFailedEventAttributes()
If the event is of type RequestCancelExternalWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.
RequestCancelExternalWorkflowExecutionFailed
then this member is set
and provides detailed information about the event. It isn't set for other event types.public HistoryEvent withRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes)
If the event is of type RequestCancelExternalWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.
requestCancelExternalWorkflowExecutionFailedEventAttributes
- If the event is of type RequestCancelExternalWorkflowExecutionFailed
then this member is set
and provides detailed information about the event. It isn't set for other event types.public void setScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes)
If the event is of type ScheduleActivityTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
scheduleActivityTaskFailedEventAttributes
- If the event is of type ScheduleActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public ScheduleActivityTaskFailedEventAttributes getScheduleActivityTaskFailedEventAttributes()
If the event is of type ScheduleActivityTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
ScheduleActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes)
If the event is of type ScheduleActivityTaskFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.
scheduleActivityTaskFailedEventAttributes
- If the event is of type ScheduleActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes)
If the event is of type RequestCancelActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
requestCancelActivityTaskFailedEventAttributes
- If the event is of type RequestCancelActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public RequestCancelActivityTaskFailedEventAttributes getRequestCancelActivityTaskFailedEventAttributes()
If the event is of type RequestCancelActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
RequestCancelActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public HistoryEvent withRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes)
If the event is of type RequestCancelActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
requestCancelActivityTaskFailedEventAttributes
- If the event is of type RequestCancelActivityTaskFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.public void setStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes)
If the event is of type StartTimerFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
startTimerFailedEventAttributes
- If the event is of type StartTimerFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public StartTimerFailedEventAttributes getStartTimerFailedEventAttributes()
If the event is of type StartTimerFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
StartTimerFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes)
If the event is of type StartTimerFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
startTimerFailedEventAttributes
- If the event is of type StartTimerFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes)
If the event is of type CancelTimerFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
cancelTimerFailedEventAttributes
- If the event is of type CancelTimerFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public CancelTimerFailedEventAttributes getCancelTimerFailedEventAttributes()
If the event is of type CancelTimerFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
CancelTimerFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public HistoryEvent withCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes)
If the event is of type CancelTimerFailed
then this member is set and provides detailed information
about the event. It isn't set for other event types.
cancelTimerFailedEventAttributes
- If the event is of type CancelTimerFailed
then this member is set and provides detailed
information about the event. It isn't set for other event types.public void setStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes)
If the event is of type StartChildWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
startChildWorkflowExecutionFailedEventAttributes
- If the event is of type StartChildWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public StartChildWorkflowExecutionFailedEventAttributes getStartChildWorkflowExecutionFailedEventAttributes()
If the event is of type StartChildWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
StartChildWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public HistoryEvent withStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes)
If the event is of type StartChildWorkflowExecutionFailed
then this member is set and provides
detailed information about the event. It isn't set for other event types.
startChildWorkflowExecutionFailedEventAttributes
- If the event is of type StartChildWorkflowExecutionFailed
then this member is set and
provides detailed information about the event. It isn't set for other event types.public void setLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes)
Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event types.
lambdaFunctionScheduledEventAttributes
- Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event
types.public LambdaFunctionScheduledEventAttributes getLambdaFunctionScheduledEventAttributes()
Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event types.
LambdaFunctionScheduled
event. It isn't set for other event
types.public HistoryEvent withLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes)
Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event types.
lambdaFunctionScheduledEventAttributes
- Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event
types.public void setLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes)
Provides the details of the LambdaFunctionStarted
event. It isn't set for other event types.
lambdaFunctionStartedEventAttributes
- Provides the details of the LambdaFunctionStarted
event. It isn't set for other event types.public LambdaFunctionStartedEventAttributes getLambdaFunctionStartedEventAttributes()
Provides the details of the LambdaFunctionStarted
event. It isn't set for other event types.
LambdaFunctionStarted
event. It isn't set for other event types.public HistoryEvent withLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes)
Provides the details of the LambdaFunctionStarted
event. It isn't set for other event types.
lambdaFunctionStartedEventAttributes
- Provides the details of the LambdaFunctionStarted
event. It isn't set for other event types.public void setLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes)
Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event types.
lambdaFunctionCompletedEventAttributes
- Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event
types.public LambdaFunctionCompletedEventAttributes getLambdaFunctionCompletedEventAttributes()
Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event types.
LambdaFunctionCompleted
event. It isn't set for other event
types.public HistoryEvent withLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes)
Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event types.
lambdaFunctionCompletedEventAttributes
- Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event
types.public void setLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes)
Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.
lambdaFunctionFailedEventAttributes
- Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.public LambdaFunctionFailedEventAttributes getLambdaFunctionFailedEventAttributes()
Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.
LambdaFunctionFailed
event. It isn't set for other event types.public HistoryEvent withLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes)
Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.
lambdaFunctionFailedEventAttributes
- Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.public void setLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes)
Provides the details of the LambdaFunctionTimedOut
event. It isn't set for other event types.
lambdaFunctionTimedOutEventAttributes
- Provides the details of the LambdaFunctionTimedOut
event. It isn't set for other event types.public LambdaFunctionTimedOutEventAttributes getLambdaFunctionTimedOutEventAttributes()
Provides the details of the LambdaFunctionTimedOut
event. It isn't set for other event types.
LambdaFunctionTimedOut
event. It isn't set for other event
types.public HistoryEvent withLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes)
Provides the details of the LambdaFunctionTimedOut
event. It isn't set for other event types.
lambdaFunctionTimedOutEventAttributes
- Provides the details of the LambdaFunctionTimedOut
event. It isn't set for other event types.public void setScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes)
Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event types.
scheduleLambdaFunctionFailedEventAttributes
- Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event
types.public ScheduleLambdaFunctionFailedEventAttributes getScheduleLambdaFunctionFailedEventAttributes()
Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event types.
ScheduleLambdaFunctionFailed
event. It isn't set for other event
types.public HistoryEvent withScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes)
Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event types.
scheduleLambdaFunctionFailedEventAttributes
- Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event
types.public void setStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes)
Provides the details of the StartLambdaFunctionFailed
event. It isn't set for other event types.
startLambdaFunctionFailedEventAttributes
- Provides the details of the StartLambdaFunctionFailed
event. It isn't set for other event
types.public StartLambdaFunctionFailedEventAttributes getStartLambdaFunctionFailedEventAttributes()
Provides the details of the StartLambdaFunctionFailed
event. It isn't set for other event types.
StartLambdaFunctionFailed
event. It isn't set for other event
types.public HistoryEvent withStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes)
Provides the details of the StartLambdaFunctionFailed
event. It isn't set for other event types.
startLambdaFunctionFailedEventAttributes
- Provides the details of the StartLambdaFunctionFailed
event. It isn't set for other event
types.public String toString()
toString
in class Object
Object.toString()
public HistoryEvent clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.