Class HistoryEvent
- All Implemented Interfaces:
Serializable, Cloneable
Event within a workflow execution. A history event can be one of these types:
- WorkflowExecutionStarted: The workflow execution was started.
- WorkflowExecutionCompleted: The workflow execution was closed due to successful completion.
- WorkflowExecutionFailed: The workflow execution closed due to a failure.
- WorkflowExecutionTimedOut: The workflow execution was closed because a time out was exceeded.
- WorkflowExecutionCanceled: The workflow execution was successfully canceled and closed.
- WorkflowExecutionTerminated: The workflow execution was terminated.
- WorkflowExecutionContinuedAsNew: The workflow execution was closed and a new execution of the same type was created with the same workflowId.
- WorkflowExecutionCancelRequested: A request to cancel this workflow execution was made.
- DecisionTaskScheduled: A decision task was scheduled for the workflow execution.
- DecisionTaskStarted: The decision task was dispatched to a decider.
- DecisionTaskCompleted: The decider successfully completed a decision task by calling RespondDecisionTaskCompleted.
- DecisionTaskTimedOut: The decision task timed out.
- ActivityTaskScheduled: An activity task was scheduled for execution.
- ScheduleActivityTaskFailed: Failed to process ScheduleActivityTask decision. This happens when the decision is not configured properly, for example the activity type specified is not registered.
- ActivityTaskStarted: The scheduled activity task was dispatched to a worker.
- ActivityTaskCompleted: An activity worker successfully completed an activity task by calling RespondActivityTaskCompleted.
- ActivityTaskFailed: An activity worker failed an activity task by calling RespondActivityTaskFailed.
- ActivityTaskTimedOut: The activity task timed out.
- ActivityTaskCanceled: The activity task was successfully canceled.
- ActivityTaskCancelRequested: A
RequestCancelActivityTaskdecision was received by the system. - RequestCancelActivityTaskFailed: Failed to process RequestCancelActivityTask decision. This happens when the decision is not configured properly.
- WorkflowExecutionSignaled: An external signal was received for the workflow execution.
- MarkerRecorded: A marker was recorded in the workflow history as
the result of a
RecordMarkerdecision. - TimerStarted: A timer was started for the workflow execution due
to a
StartTimerdecision. - StartTimerFailed: Failed to process StartTimer decision. This happens when the decision is not configured properly, for example a timer already exists with the specified timer ID.
- TimerFired: A timer, previously started for this workflow execution, fired.
- TimerCanceled: A timer, previously started for this workflow execution, was successfully canceled.
- CancelTimerFailed: Failed to process CancelTimer decision. This happens when the decision is not configured properly, for example no timer exists with the specified timer ID.
- StartChildWorkflowExecutionInitiated: A request was made to start a child workflow execution.
- StartChildWorkflowExecutionFailed: Failed to process StartChildWorkflowExecution decision. This happens when the decision is not configured properly, for example the workflow type specified is not registered.
- ChildWorkflowExecutionStarted: A child workflow execution was successfully started.
- 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.
- ChildWorkflowExecutionTimedOut: A child workflow execution, started by this workflow execution, timed out and was closed.
- ChildWorkflowExecutionCanceled: A child workflow execution, started by this workflow execution, was canceled and closed.
- ChildWorkflowExecutionTerminated: A child workflow execution, started by this workflow execution, was terminated.
- SignalExternalWorkflowExecutionInitiated: A request to signal an external workflow was made.
- ExternalWorkflowExecutionSignaled: A signal, requested by this workflow execution, was successfully delivered to the target external workflow execution.
- SignalExternalWorkflowExecutionFailed: The request to signal an external workflow execution failed.
- RequestCancelExternalWorkflowExecutionInitiated: A request was made to request the cancellation of an external workflow execution.
- ExternalWorkflowExecutionCancelRequested: Request to cancel an external workflow execution was successfully delivered to the target execution.
- RequestCancelExternalWorkflowExecutionFailed: Request to cancel an external workflow execution failed.
- LambdaFunctionScheduled: An AWS Lambda function was scheduled for execution.
- LambdaFunctionStarted: The scheduled function was invoked in the AWS Lambda service.
- LambdaFunctionCompleted: The AWS Lambda function successfully completed.
- LambdaFunctionFailed: The AWS Lambda function execution failed.
- LambdaFunctionTimedOut: The AWS Lambda function execution timed out.
- ScheduleLambdaFunctionFailed: Failed to process ScheduleLambdaFunction decision. This happens when the workflow execution does not have the proper IAM role attached to invoke AWS Lambda functions.
- StartLambdaFunctionFailed: Failed to invoke the scheduled function in the AWS Lambda service. This happens when the AWS Lambda service is not available in the current region, or received too many requests.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()booleanIf the event is of typeActivityTaskCanceledthen this member is set and provides detailed information about the event.If the event is of typeActivityTaskcancelRequestedthen this member is set and provides detailed information about the event.If the event is of typeActivityTaskCompletedthen this member is set and provides detailed information about the event.If the event is of typeActivityTaskFailedthen this member is set and provides detailed information about the event.If the event is of typeActivityTaskScheduledthen this member is set and provides detailed information about the event.If the event is of typeActivityTaskStartedthen this member is set and provides detailed information about the event.If the event is of typeActivityTaskTimedOutthen this member is set and provides detailed information about the event.If the event is of typeCancelTimerFailedthen this member is set and provides detailed information about the event.If the event is of typeCancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event.If the event is of typeChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event.If the event is of typeChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event.If the event is of typeChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event.If the event is of typeChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event.If the event is of typeCompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeDecisionTaskCompletedthen this member is set and provides detailed information about the event.If the event is of typeDecisionTaskScheduledthen this member is set and provides detailed information about the event.If the event is of typeDecisionTaskStartedthen this member is set and provides detailed information about the event.If the event is of typeDecisionTaskTimedOutthen this member is set and provides detailed information about the event.The system generated ID of the event.The date and time when the event occurred.The type of the history event.If the event is of typeExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event.If the event is of typeExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event.If the event is of typeFailWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeMarkerRecordedthen this member is set and provides detailed information about the event.If the event is of typeDecisionTaskFailedthen this member is set and provides detailed information about the event.If the event is of typeRequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event.If the event is of typeRequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeRequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.If the event is of typeScheduleActivityTaskFailedthen this member is set and provides detailed information about the event.If the event is of typeSignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeSignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.If the event is of typeStartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeStartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.If the event is of typeStartTimerFailedthen this member is set and provides detailed information about the event.If the event is of typeTimerCanceledthen this member is set and provides detailed information about the event.If the event is of typeTimerFiredthen this member is set and provides detailed information about the event.If the event is of typeTimerStartedthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionCanceledthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionCompletedthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionFailedthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionSignaledthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionStartedthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event.If the event is of typeWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event.inthashCode()voidsetActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes) If the event is of typeActivityTaskCanceledthen this member is set and provides detailed information about the event.voidsetActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes) If the event is of typeActivityTaskcancelRequestedthen this member is set and provides detailed information about the event.voidsetActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes) If the event is of typeActivityTaskCompletedthen this member is set and provides detailed information about the event.voidsetActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes) If the event is of typeActivityTaskFailedthen this member is set and provides detailed information about the event.voidsetActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes) If the event is of typeActivityTaskScheduledthen this member is set and provides detailed information about the event.voidsetActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes) If the event is of typeActivityTaskStartedthen this member is set and provides detailed information about the event.voidsetActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes) If the event is of typeActivityTaskTimedOutthen this member is set and provides detailed information about the event.voidsetCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes) If the event is of typeCancelTimerFailedthen this member is set and provides detailed information about the event.voidsetCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes) If the event is of typeCancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes) If the event is of typeChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event.voidsetChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes) If the event is of typeChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event.voidsetChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes) If the event is of typeChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes) If the event is of typeChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event.voidsetChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes) If the event is of typeChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event.voidsetChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes) If the event is of typeChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event.voidsetCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes) If the event is of typeCompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes) If the event is of typeContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes) If the event is of typeDecisionTaskCompletedthen this member is set and provides detailed information about the event.voidsetDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes) If the event is of typeDecisionTaskScheduledthen this member is set and provides detailed information about the event.voidsetDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes) If the event is of typeDecisionTaskStartedthen this member is set and provides detailed information about the event.voidsetDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes) If the event is of typeDecisionTaskTimedOutthen this member is set and provides detailed information about the event.voidsetEventId(Long eventId) The system generated ID of the event.voidsetEventTimestamp(Date eventTimestamp) The date and time when the event occurred.voidsetEventType(EventType eventType) The type of the history event.voidsetEventType(String eventType) The type of the history event.voidsetExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes) If the event is of typeExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event.voidsetExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes) If the event is of typeExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event.voidsetFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes) If the event is of typeFailWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes) voidsetLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes) voidsetLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes) voidsetLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes) voidsetLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes) voidsetMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes) If the event is of typeMarkerRecordedthen this member is set and provides detailed information about the event.voidsetRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes) If the event is of typeDecisionTaskFailedthen this member is set and provides detailed information about the event.voidsetRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes) If the event is of typeRequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event.voidsetRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes) If the event is of typeRequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes) If the event is of typeRequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.voidsetScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes) If the event is of typeScheduleActivityTaskFailedthen this member is set and provides detailed information about the event.voidsetScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes) voidsetSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes) If the event is of typeSignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes) If the event is of typeSignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.voidsetStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes) If the event is of typeStartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes) If the event is of typeStartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.voidsetStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes) voidsetStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes) If the event is of typeStartTimerFailedthen this member is set and provides detailed information about the event.voidsetTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes) If the event is of typeTimerCanceledthen this member is set and provides detailed information about the event.voidsetTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes) If the event is of typeTimerFiredthen this member is set and provides detailed information about the event.voidsetTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes) If the event is of typeTimerStartedthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes) If the event is of typeWorkflowExecutionCanceledthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes) If the event is of typeWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes) If the event is of typeWorkflowExecutionCompletedthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes) If the event is of typeWorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes) If the event is of typeWorkflowExecutionFailedthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes) If the event is of typeWorkflowExecutionSignaledthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes) If the event is of typeWorkflowExecutionStartedthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes) If the event is of typeWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event.voidsetWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes) If the event is of typeWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event.toString()Returns a string representation of this object; useful for testing and debugging.withActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes) If the event is of typeActivityTaskCanceledthen this member is set and provides detailed information about the event.withActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes) If the event is of typeActivityTaskcancelRequestedthen this member is set and provides detailed information about the event.withActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes) If the event is of typeActivityTaskCompletedthen this member is set and provides detailed information about the event.withActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes) If the event is of typeActivityTaskFailedthen this member is set and provides detailed information about the event.withActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes) If the event is of typeActivityTaskScheduledthen this member is set and provides detailed information about the event.withActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes) If the event is of typeActivityTaskStartedthen this member is set and provides detailed information about the event.withActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes) If the event is of typeActivityTaskTimedOutthen this member is set and provides detailed information about the event.withCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes) If the event is of typeCancelTimerFailedthen this member is set and provides detailed information about the event.withCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes) If the event is of typeCancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes) If the event is of typeChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event.withChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes) If the event is of typeChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event.withChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes) If the event is of typeChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes) If the event is of typeChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event.withChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes) If the event is of typeChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event.withChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes) If the event is of typeChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event.withCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes) If the event is of typeCompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes) If the event is of typeContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes) If the event is of typeDecisionTaskCompletedthen this member is set and provides detailed information about the event.withDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes) If the event is of typeDecisionTaskScheduledthen this member is set and provides detailed information about the event.withDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes) If the event is of typeDecisionTaskStartedthen this member is set and provides detailed information about the event.withDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes) If the event is of typeDecisionTaskTimedOutthen this member is set and provides detailed information about the event.withEventId(Long eventId) The system generated ID of the event.withEventTimestamp(Date eventTimestamp) The date and time when the event occurred.withEventType(EventType eventType) The type of the history event.withEventType(String eventType) The type of the history event.withExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes) If the event is of typeExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event.withExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes) If the event is of typeExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event.withFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes) If the event is of typeFailWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes) withLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes) withLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes) withLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes) withLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes) withMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes) If the event is of typeMarkerRecordedthen this member is set and provides detailed information about the event.withRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes) If the event is of typeDecisionTaskFailedthen this member is set and provides detailed information about the event.withRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes) If the event is of typeRequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event.withRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes) If the event is of typeRequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes) If the event is of typeRequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.withScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes) If the event is of typeScheduleActivityTaskFailedthen this member is set and provides detailed information about the event.withScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes) withSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes) If the event is of typeSignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes) If the event is of typeSignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.withStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes) If the event is of typeStartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes) If the event is of typeStartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event.withStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes) withStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes) If the event is of typeStartTimerFailedthen this member is set and provides detailed information about the event.withTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes) If the event is of typeTimerCanceledthen this member is set and provides detailed information about the event.withTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes) If the event is of typeTimerFiredthen this member is set and provides detailed information about the event.withTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes) If the event is of typeTimerStartedthen this member is set and provides detailed information about the event.withWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes) If the event is of typeWorkflowExecutionCanceledthen this member is set and provides detailed information about the event.withWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes) If the event is of typeWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event.withWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes) If the event is of typeWorkflowExecutionCompletedthen this member is set and provides detailed information about the event.withWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes) If the event is of typeWorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event.withWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes) If the event is of typeWorkflowExecutionFailedthen this member is set and provides detailed information about the event.withWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes) If the event is of typeWorkflowExecutionSignaledthen this member is set and provides detailed information about the event.withWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes) If the event is of typeWorkflowExecutionStartedthen this member is set and provides detailed information about the event.withWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes) If the event is of typeWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event.withWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes) If the event is of typeWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event.
-
Constructor Details
-
HistoryEvent
public HistoryEvent()
-
-
Method Details
-
setEventTimestamp
The date and time when the event occurred.
- Parameters:
eventTimestamp- The date and time when the event occurred.
-
getEventTimestamp
The date and time when the event occurred.
- Returns:
- The date and time when the event occurred.
-
withEventTimestamp
The date and time when the event occurred.
- Parameters:
eventTimestamp- The date and time when the event occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setEventType
The type of the history event.
- Parameters:
eventType- The type of the history event.- See Also:
-
getEventType
The type of the history event.
- Returns:
- The type of the history event.
- See Also:
-
withEventType
The type of the history event.
- Parameters:
eventType- The type of the history event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
setEventType
The type of the history event.
- Parameters:
eventType- The type of the history event.- See Also:
-
withEventType
The type of the history event.
- Parameters:
eventType- The type of the history event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
setEventId
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
- Parameters:
eventId- The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
-
getEventId
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
- Returns:
- The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
-
withEventId
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
- Parameters:
eventId- The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionStartedEventAttributes
public void setWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes) If the event is of type
WorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionStartedEventAttributes- If the event is of typeWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionStartedEventAttributes
If the event is of type
WorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionStartedEventAttributes
public HistoryEvent withWorkflowExecutionStartedEventAttributes(WorkflowExecutionStartedEventAttributes workflowExecutionStartedEventAttributes) If the event is of type
WorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionStartedEventAttributes- If the event is of typeWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionCompletedEventAttributes
public void setWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes) If the event is of type
WorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionCompletedEventAttributes- If the event is of typeWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionCompletedEventAttributes
If the event is of type
WorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionCompletedEventAttributes
public HistoryEvent withWorkflowExecutionCompletedEventAttributes(WorkflowExecutionCompletedEventAttributes workflowExecutionCompletedEventAttributes) If the event is of type
WorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionCompletedEventAttributes- If the event is of typeWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCompleteWorkflowExecutionFailedEventAttributes
public void setCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes) If the event is of type
CompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
completeWorkflowExecutionFailedEventAttributes- If the event is of typeCompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getCompleteWorkflowExecutionFailedEventAttributes
public CompleteWorkflowExecutionFailedEventAttributes getCompleteWorkflowExecutionFailedEventAttributes()If the event is of type
CompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
CompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withCompleteWorkflowExecutionFailedEventAttributes
public HistoryEvent withCompleteWorkflowExecutionFailedEventAttributes(CompleteWorkflowExecutionFailedEventAttributes completeWorkflowExecutionFailedEventAttributes) If the event is of type
CompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
completeWorkflowExecutionFailedEventAttributes- If the event is of typeCompleteWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionFailedEventAttributes
public void setWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes) If the event is of type
WorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionFailedEventAttributes- If the event is of typeWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionFailedEventAttributes
If the event is of type
WorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionFailedEventAttributes
public HistoryEvent withWorkflowExecutionFailedEventAttributes(WorkflowExecutionFailedEventAttributes workflowExecutionFailedEventAttributes) If the event is of type
WorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionFailedEventAttributes- If the event is of typeWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setFailWorkflowExecutionFailedEventAttributes
public void setFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes) If the event is of type
FailWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
failWorkflowExecutionFailedEventAttributes- If the event is of typeFailWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getFailWorkflowExecutionFailedEventAttributes
If the event is of type
FailWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
FailWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withFailWorkflowExecutionFailedEventAttributes
public HistoryEvent withFailWorkflowExecutionFailedEventAttributes(FailWorkflowExecutionFailedEventAttributes failWorkflowExecutionFailedEventAttributes) If the event is of type
FailWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
failWorkflowExecutionFailedEventAttributes- If the event is of typeFailWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionTimedOutEventAttributes
public void setWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes) If the event is of type
WorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionTimedOutEventAttributes- If the event is of typeWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionTimedOutEventAttributes
If the event is of type
WorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionTimedOutEventAttributes
public HistoryEvent withWorkflowExecutionTimedOutEventAttributes(WorkflowExecutionTimedOutEventAttributes workflowExecutionTimedOutEventAttributes) If the event is of type
WorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionTimedOutEventAttributes- If the event is of typeWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionCanceledEventAttributes
public void setWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes) If the event is of type
WorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionCanceledEventAttributes- If the event is of typeWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionCanceledEventAttributes
If the event is of type
WorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionCanceledEventAttributes
public HistoryEvent withWorkflowExecutionCanceledEventAttributes(WorkflowExecutionCanceledEventAttributes workflowExecutionCanceledEventAttributes) If the event is of type
WorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionCanceledEventAttributes- If the event is of typeWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCancelWorkflowExecutionFailedEventAttributes
public void setCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes) If the event is of type
CancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
cancelWorkflowExecutionFailedEventAttributes- If the event is of typeCancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getCancelWorkflowExecutionFailedEventAttributes
public CancelWorkflowExecutionFailedEventAttributes getCancelWorkflowExecutionFailedEventAttributes()If the event is of type
CancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
CancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withCancelWorkflowExecutionFailedEventAttributes
public HistoryEvent withCancelWorkflowExecutionFailedEventAttributes(CancelWorkflowExecutionFailedEventAttributes cancelWorkflowExecutionFailedEventAttributes) If the event is of type
CancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
cancelWorkflowExecutionFailedEventAttributes- If the event is of typeCancelWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionContinuedAsNewEventAttributes
public void setWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes) If the event is of type
WorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionContinuedAsNewEventAttributes- If the event is of typeWorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionContinuedAsNewEventAttributes
public WorkflowExecutionContinuedAsNewEventAttributes getWorkflowExecutionContinuedAsNewEventAttributes()If the event is of type
WorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionContinuedAsNewEventAttributes
public HistoryEvent withWorkflowExecutionContinuedAsNewEventAttributes(WorkflowExecutionContinuedAsNewEventAttributes workflowExecutionContinuedAsNewEventAttributes) If the event is of type
WorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionContinuedAsNewEventAttributes- If the event is of typeWorkflowExecutionContinuedAsNewthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setContinueAsNewWorkflowExecutionFailedEventAttributes
public void setContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes) If the event is of type
ContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
continueAsNewWorkflowExecutionFailedEventAttributes- If the event is of typeContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getContinueAsNewWorkflowExecutionFailedEventAttributes
public ContinueAsNewWorkflowExecutionFailedEventAttributes getContinueAsNewWorkflowExecutionFailedEventAttributes()If the event is of type
ContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withContinueAsNewWorkflowExecutionFailedEventAttributes
public HistoryEvent withContinueAsNewWorkflowExecutionFailedEventAttributes(ContinueAsNewWorkflowExecutionFailedEventAttributes continueAsNewWorkflowExecutionFailedEventAttributes) If the event is of type
ContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
continueAsNewWorkflowExecutionFailedEventAttributes- If the event is of typeContinueAsNewWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionTerminatedEventAttributes
public void setWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes) If the event is of type
WorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionTerminatedEventAttributes- If the event is of typeWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionTerminatedEventAttributes
If the event is of type
WorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionTerminatedEventAttributes
public HistoryEvent withWorkflowExecutionTerminatedEventAttributes(WorkflowExecutionTerminatedEventAttributes workflowExecutionTerminatedEventAttributes) If the event is of type
WorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionTerminatedEventAttributes- If the event is of typeWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionCancelRequestedEventAttributes
public void setWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes) If the event is of type
WorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionCancelRequestedEventAttributes- If the event is of typeWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionCancelRequestedEventAttributes
public WorkflowExecutionCancelRequestedEventAttributes getWorkflowExecutionCancelRequestedEventAttributes()If the event is of type
WorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionCancelRequestedEventAttributes
public HistoryEvent withWorkflowExecutionCancelRequestedEventAttributes(WorkflowExecutionCancelRequestedEventAttributes workflowExecutionCancelRequestedEventAttributes) If the event is of type
WorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionCancelRequestedEventAttributes- If the event is of typeWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDecisionTaskScheduledEventAttributes
public void setDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes) If the event is of type
DecisionTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskScheduledEventAttributes- If the event is of typeDecisionTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getDecisionTaskScheduledEventAttributes
If the event is of type
DecisionTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
DecisionTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withDecisionTaskScheduledEventAttributes
public HistoryEvent withDecisionTaskScheduledEventAttributes(DecisionTaskScheduledEventAttributes decisionTaskScheduledEventAttributes) If the event is of type
DecisionTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskScheduledEventAttributes- If the event is of typeDecisionTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDecisionTaskStartedEventAttributes
public void setDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes) If the event is of type
DecisionTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskStartedEventAttributes- If the event is of typeDecisionTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getDecisionTaskStartedEventAttributes
If the event is of type
DecisionTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
DecisionTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withDecisionTaskStartedEventAttributes
public HistoryEvent withDecisionTaskStartedEventAttributes(DecisionTaskStartedEventAttributes decisionTaskStartedEventAttributes) If the event is of type
DecisionTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskStartedEventAttributes- If the event is of typeDecisionTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDecisionTaskCompletedEventAttributes
public void setDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes) If the event is of type
DecisionTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskCompletedEventAttributes- If the event is of typeDecisionTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getDecisionTaskCompletedEventAttributes
If the event is of type
DecisionTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
DecisionTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withDecisionTaskCompletedEventAttributes
public HistoryEvent withDecisionTaskCompletedEventAttributes(DecisionTaskCompletedEventAttributes decisionTaskCompletedEventAttributes) If the event is of type
DecisionTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskCompletedEventAttributes- If the event is of typeDecisionTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDecisionTaskTimedOutEventAttributes
public void setDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes) If the event is of type
DecisionTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskTimedOutEventAttributes- If the event is of typeDecisionTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getDecisionTaskTimedOutEventAttributes
If the event is of type
DecisionTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
DecisionTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withDecisionTaskTimedOutEventAttributes
public HistoryEvent withDecisionTaskTimedOutEventAttributes(DecisionTaskTimedOutEventAttributes decisionTaskTimedOutEventAttributes) If the event is of type
DecisionTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
decisionTaskTimedOutEventAttributes- If the event is of typeDecisionTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskScheduledEventAttributes
public void setActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes) If the event is of type
ActivityTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskScheduledEventAttributes- If the event is of typeActivityTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskScheduledEventAttributes
If the event is of type
ActivityTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskScheduledEventAttributes
public HistoryEvent withActivityTaskScheduledEventAttributes(ActivityTaskScheduledEventAttributes activityTaskScheduledEventAttributes) If the event is of type
ActivityTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskScheduledEventAttributes- If the event is of typeActivityTaskScheduledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskStartedEventAttributes
public void setActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes) If the event is of type
ActivityTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskStartedEventAttributes- If the event is of typeActivityTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskStartedEventAttributes
If the event is of type
ActivityTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskStartedEventAttributes
public HistoryEvent withActivityTaskStartedEventAttributes(ActivityTaskStartedEventAttributes activityTaskStartedEventAttributes) If the event is of type
ActivityTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskStartedEventAttributes- If the event is of typeActivityTaskStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskCompletedEventAttributes
public void setActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes) If the event is of type
ActivityTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskCompletedEventAttributes- If the event is of typeActivityTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskCompletedEventAttributes
If the event is of type
ActivityTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskCompletedEventAttributes
public HistoryEvent withActivityTaskCompletedEventAttributes(ActivityTaskCompletedEventAttributes activityTaskCompletedEventAttributes) If the event is of type
ActivityTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskCompletedEventAttributes- If the event is of typeActivityTaskCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskFailedEventAttributes
public void setActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes) If the event is of type
ActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskFailedEventAttributes- If the event is of typeActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskFailedEventAttributes
If the event is of type
ActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskFailedEventAttributes
public HistoryEvent withActivityTaskFailedEventAttributes(ActivityTaskFailedEventAttributes activityTaskFailedEventAttributes) If the event is of type
ActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskFailedEventAttributes- If the event is of typeActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskTimedOutEventAttributes
public void setActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes) If the event is of type
ActivityTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskTimedOutEventAttributes- If the event is of typeActivityTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskTimedOutEventAttributes
If the event is of type
ActivityTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskTimedOutEventAttributes
public HistoryEvent withActivityTaskTimedOutEventAttributes(ActivityTaskTimedOutEventAttributes activityTaskTimedOutEventAttributes) If the event is of type
ActivityTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskTimedOutEventAttributes- If the event is of typeActivityTaskTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskCanceledEventAttributes
public void setActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes) If the event is of type
ActivityTaskCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskCanceledEventAttributes- If the event is of typeActivityTaskCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskCanceledEventAttributes
If the event is of type
ActivityTaskCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskCanceledEventAttributes
public HistoryEvent withActivityTaskCanceledEventAttributes(ActivityTaskCanceledEventAttributes activityTaskCanceledEventAttributes) If the event is of type
ActivityTaskCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskCanceledEventAttributes- If the event is of typeActivityTaskCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityTaskCancelRequestedEventAttributes
public void setActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes) If the event is of type
ActivityTaskcancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskCancelRequestedEventAttributes- If the event is of typeActivityTaskcancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getActivityTaskCancelRequestedEventAttributes
If the event is of type
ActivityTaskcancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ActivityTaskcancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withActivityTaskCancelRequestedEventAttributes
public HistoryEvent withActivityTaskCancelRequestedEventAttributes(ActivityTaskCancelRequestedEventAttributes activityTaskCancelRequestedEventAttributes) If the event is of type
ActivityTaskcancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
activityTaskCancelRequestedEventAttributes- If the event is of typeActivityTaskcancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowExecutionSignaledEventAttributes
public void setWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes) If the event is of type
WorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionSignaledEventAttributes- If the event is of typeWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getWorkflowExecutionSignaledEventAttributes
If the event is of type
WorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
WorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withWorkflowExecutionSignaledEventAttributes
public HistoryEvent withWorkflowExecutionSignaledEventAttributes(WorkflowExecutionSignaledEventAttributes workflowExecutionSignaledEventAttributes) If the event is of type
WorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
workflowExecutionSignaledEventAttributes- If the event is of typeWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMarkerRecordedEventAttributes
public void setMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes) If the event is of type
MarkerRecordedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
markerRecordedEventAttributes- If the event is of typeMarkerRecordedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getMarkerRecordedEventAttributes
If the event is of type
MarkerRecordedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
MarkerRecordedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withMarkerRecordedEventAttributes
public HistoryEvent withMarkerRecordedEventAttributes(MarkerRecordedEventAttributes markerRecordedEventAttributes) If the event is of type
MarkerRecordedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
markerRecordedEventAttributes- If the event is of typeMarkerRecordedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setRecordMarkerFailedEventAttributes
public void setRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes) If the event is of type
DecisionTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
recordMarkerFailedEventAttributes- If the event is of typeDecisionTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getRecordMarkerFailedEventAttributes
If the event is of type
DecisionTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
DecisionTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withRecordMarkerFailedEventAttributes
public HistoryEvent withRecordMarkerFailedEventAttributes(RecordMarkerFailedEventAttributes recordMarkerFailedEventAttributes) If the event is of type
DecisionTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
recordMarkerFailedEventAttributes- If the event is of typeDecisionTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTimerStartedEventAttributes
If the event is of type
TimerStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
timerStartedEventAttributes- If the event is of typeTimerStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getTimerStartedEventAttributes
If the event is of type
TimerStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
TimerStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withTimerStartedEventAttributes
public HistoryEvent withTimerStartedEventAttributes(TimerStartedEventAttributes timerStartedEventAttributes) If the event is of type
TimerStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
timerStartedEventAttributes- If the event is of typeTimerStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTimerFiredEventAttributes
If the event is of type
TimerFiredthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
timerFiredEventAttributes- If the event is of typeTimerFiredthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getTimerFiredEventAttributes
If the event is of type
TimerFiredthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
TimerFiredthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withTimerFiredEventAttributes
public HistoryEvent withTimerFiredEventAttributes(TimerFiredEventAttributes timerFiredEventAttributes) If the event is of type
TimerFiredthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
timerFiredEventAttributes- If the event is of typeTimerFiredthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTimerCanceledEventAttributes
public void setTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes) If the event is of type
TimerCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
timerCanceledEventAttributes- If the event is of typeTimerCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getTimerCanceledEventAttributes
If the event is of type
TimerCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
TimerCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withTimerCanceledEventAttributes
public HistoryEvent withTimerCanceledEventAttributes(TimerCanceledEventAttributes timerCanceledEventAttributes) If the event is of type
TimerCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
timerCanceledEventAttributes- If the event is of typeTimerCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStartChildWorkflowExecutionInitiatedEventAttributes
public void setStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes) If the event is of type
StartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
startChildWorkflowExecutionInitiatedEventAttributes- If the event is of typeStartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getStartChildWorkflowExecutionInitiatedEventAttributes
public StartChildWorkflowExecutionInitiatedEventAttributes getStartChildWorkflowExecutionInitiatedEventAttributes()If the event is of type
StartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
StartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withStartChildWorkflowExecutionInitiatedEventAttributes
public HistoryEvent withStartChildWorkflowExecutionInitiatedEventAttributes(StartChildWorkflowExecutionInitiatedEventAttributes startChildWorkflowExecutionInitiatedEventAttributes) If the event is of type
StartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
startChildWorkflowExecutionInitiatedEventAttributes- If the event is of typeStartChildWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setChildWorkflowExecutionStartedEventAttributes
public void setChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes) If the event is of type
ChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionStartedEventAttributes- If the event is of typeChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getChildWorkflowExecutionStartedEventAttributes
public ChildWorkflowExecutionStartedEventAttributes getChildWorkflowExecutionStartedEventAttributes()If the event is of type
ChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withChildWorkflowExecutionStartedEventAttributes
public HistoryEvent withChildWorkflowExecutionStartedEventAttributes(ChildWorkflowExecutionStartedEventAttributes childWorkflowExecutionStartedEventAttributes) If the event is of type
ChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionStartedEventAttributes- If the event is of typeChildWorkflowExecutionStartedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setChildWorkflowExecutionCompletedEventAttributes
public void setChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes) If the event is of type
ChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionCompletedEventAttributes- If the event is of typeChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getChildWorkflowExecutionCompletedEventAttributes
public ChildWorkflowExecutionCompletedEventAttributes getChildWorkflowExecutionCompletedEventAttributes()If the event is of type
ChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withChildWorkflowExecutionCompletedEventAttributes
public HistoryEvent withChildWorkflowExecutionCompletedEventAttributes(ChildWorkflowExecutionCompletedEventAttributes childWorkflowExecutionCompletedEventAttributes) If the event is of type
ChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionCompletedEventAttributes- If the event is of typeChildWorkflowExecutionCompletedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setChildWorkflowExecutionFailedEventAttributes
public void setChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes) If the event is of type
ChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionFailedEventAttributes- If the event is of typeChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getChildWorkflowExecutionFailedEventAttributes
If the event is of type
ChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withChildWorkflowExecutionFailedEventAttributes
public HistoryEvent withChildWorkflowExecutionFailedEventAttributes(ChildWorkflowExecutionFailedEventAttributes childWorkflowExecutionFailedEventAttributes) If the event is of type
ChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionFailedEventAttributes- If the event is of typeChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setChildWorkflowExecutionTimedOutEventAttributes
public void setChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes) If the event is of type
ChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionTimedOutEventAttributes- If the event is of typeChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getChildWorkflowExecutionTimedOutEventAttributes
public ChildWorkflowExecutionTimedOutEventAttributes getChildWorkflowExecutionTimedOutEventAttributes()If the event is of type
ChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withChildWorkflowExecutionTimedOutEventAttributes
public HistoryEvent withChildWorkflowExecutionTimedOutEventAttributes(ChildWorkflowExecutionTimedOutEventAttributes childWorkflowExecutionTimedOutEventAttributes) If the event is of type
ChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionTimedOutEventAttributes- If the event is of typeChildWorkflowExecutionTimedOutthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setChildWorkflowExecutionCanceledEventAttributes
public void setChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes) If the event is of type
ChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionCanceledEventAttributes- If the event is of typeChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getChildWorkflowExecutionCanceledEventAttributes
public ChildWorkflowExecutionCanceledEventAttributes getChildWorkflowExecutionCanceledEventAttributes()If the event is of type
ChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withChildWorkflowExecutionCanceledEventAttributes
public HistoryEvent withChildWorkflowExecutionCanceledEventAttributes(ChildWorkflowExecutionCanceledEventAttributes childWorkflowExecutionCanceledEventAttributes) If the event is of type
ChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionCanceledEventAttributes- If the event is of typeChildWorkflowExecutionCanceledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setChildWorkflowExecutionTerminatedEventAttributes
public void setChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes) If the event is of type
ChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionTerminatedEventAttributes- If the event is of typeChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getChildWorkflowExecutionTerminatedEventAttributes
public ChildWorkflowExecutionTerminatedEventAttributes getChildWorkflowExecutionTerminatedEventAttributes()If the event is of type
ChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withChildWorkflowExecutionTerminatedEventAttributes
public HistoryEvent withChildWorkflowExecutionTerminatedEventAttributes(ChildWorkflowExecutionTerminatedEventAttributes childWorkflowExecutionTerminatedEventAttributes) If the event is of type
ChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
childWorkflowExecutionTerminatedEventAttributes- If the event is of typeChildWorkflowExecutionTerminatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSignalExternalWorkflowExecutionInitiatedEventAttributes
public void setSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes) If the event is of type
SignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
signalExternalWorkflowExecutionInitiatedEventAttributes- If the event is of typeSignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getSignalExternalWorkflowExecutionInitiatedEventAttributes
public SignalExternalWorkflowExecutionInitiatedEventAttributes getSignalExternalWorkflowExecutionInitiatedEventAttributes()If the event is of type
SignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
SignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withSignalExternalWorkflowExecutionInitiatedEventAttributes
public HistoryEvent withSignalExternalWorkflowExecutionInitiatedEventAttributes(SignalExternalWorkflowExecutionInitiatedEventAttributes signalExternalWorkflowExecutionInitiatedEventAttributes) If the event is of type
SignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
signalExternalWorkflowExecutionInitiatedEventAttributes- If the event is of typeSignalExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setExternalWorkflowExecutionSignaledEventAttributes
public void setExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes) If the event is of type
ExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
externalWorkflowExecutionSignaledEventAttributes- If the event is of typeExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getExternalWorkflowExecutionSignaledEventAttributes
public ExternalWorkflowExecutionSignaledEventAttributes getExternalWorkflowExecutionSignaledEventAttributes()If the event is of type
ExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withExternalWorkflowExecutionSignaledEventAttributes
public HistoryEvent withExternalWorkflowExecutionSignaledEventAttributes(ExternalWorkflowExecutionSignaledEventAttributes externalWorkflowExecutionSignaledEventAttributes) If the event is of type
ExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
externalWorkflowExecutionSignaledEventAttributes- If the event is of typeExternalWorkflowExecutionSignaledthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSignalExternalWorkflowExecutionFailedEventAttributes
public void setSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes) If the event is of type
SignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
signalExternalWorkflowExecutionFailedEventAttributes- If the event is of typeSignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getSignalExternalWorkflowExecutionFailedEventAttributes
public SignalExternalWorkflowExecutionFailedEventAttributes getSignalExternalWorkflowExecutionFailedEventAttributes()If the event is of type
SignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
SignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withSignalExternalWorkflowExecutionFailedEventAttributes
public HistoryEvent withSignalExternalWorkflowExecutionFailedEventAttributes(SignalExternalWorkflowExecutionFailedEventAttributes signalExternalWorkflowExecutionFailedEventAttributes) If the event is of type
SignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
signalExternalWorkflowExecutionFailedEventAttributes- If the event is of typeSignalExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setExternalWorkflowExecutionCancelRequestedEventAttributes
public void setExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes) If the event is of type
ExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
externalWorkflowExecutionCancelRequestedEventAttributes- If the event is of typeExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getExternalWorkflowExecutionCancelRequestedEventAttributes
public ExternalWorkflowExecutionCancelRequestedEventAttributes getExternalWorkflowExecutionCancelRequestedEventAttributes()If the event is of type
ExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withExternalWorkflowExecutionCancelRequestedEventAttributes
public HistoryEvent withExternalWorkflowExecutionCancelRequestedEventAttributes(ExternalWorkflowExecutionCancelRequestedEventAttributes externalWorkflowExecutionCancelRequestedEventAttributes) If the event is of type
ExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
externalWorkflowExecutionCancelRequestedEventAttributes- If the event is of typeExternalWorkflowExecutionCancelRequestedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setRequestCancelExternalWorkflowExecutionInitiatedEventAttributes
public void setRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes) If the event is of type
RequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
requestCancelExternalWorkflowExecutionInitiatedEventAttributes- If the event is of typeRequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getRequestCancelExternalWorkflowExecutionInitiatedEventAttributes
public RequestCancelExternalWorkflowExecutionInitiatedEventAttributes getRequestCancelExternalWorkflowExecutionInitiatedEventAttributes()If the event is of type
RequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
RequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withRequestCancelExternalWorkflowExecutionInitiatedEventAttributes
public HistoryEvent withRequestCancelExternalWorkflowExecutionInitiatedEventAttributes(RequestCancelExternalWorkflowExecutionInitiatedEventAttributes requestCancelExternalWorkflowExecutionInitiatedEventAttributes) If the event is of type
RequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
requestCancelExternalWorkflowExecutionInitiatedEventAttributes- If the event is of typeRequestCancelExternalWorkflowExecutionInitiatedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setRequestCancelExternalWorkflowExecutionFailedEventAttributes
public void setRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes) If the event is of type
RequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
requestCancelExternalWorkflowExecutionFailedEventAttributes- If the event is of typeRequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getRequestCancelExternalWorkflowExecutionFailedEventAttributes
public RequestCancelExternalWorkflowExecutionFailedEventAttributes getRequestCancelExternalWorkflowExecutionFailedEventAttributes()If the event is of type
RequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
RequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withRequestCancelExternalWorkflowExecutionFailedEventAttributes
public HistoryEvent withRequestCancelExternalWorkflowExecutionFailedEventAttributes(RequestCancelExternalWorkflowExecutionFailedEventAttributes requestCancelExternalWorkflowExecutionFailedEventAttributes) If the event is of type
RequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
requestCancelExternalWorkflowExecutionFailedEventAttributes- If the event is of typeRequestCancelExternalWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setScheduleActivityTaskFailedEventAttributes
public void setScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes) If the event is of type
ScheduleActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
scheduleActivityTaskFailedEventAttributes- If the event is of typeScheduleActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getScheduleActivityTaskFailedEventAttributes
If the event is of type
ScheduleActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
ScheduleActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withScheduleActivityTaskFailedEventAttributes
public HistoryEvent withScheduleActivityTaskFailedEventAttributes(ScheduleActivityTaskFailedEventAttributes scheduleActivityTaskFailedEventAttributes) If the event is of type
ScheduleActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
scheduleActivityTaskFailedEventAttributes- If the event is of typeScheduleActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setRequestCancelActivityTaskFailedEventAttributes
public void setRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes) If the event is of type
RequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
requestCancelActivityTaskFailedEventAttributes- If the event is of typeRequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getRequestCancelActivityTaskFailedEventAttributes
public RequestCancelActivityTaskFailedEventAttributes getRequestCancelActivityTaskFailedEventAttributes()If the event is of type
RequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
RequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withRequestCancelActivityTaskFailedEventAttributes
public HistoryEvent withRequestCancelActivityTaskFailedEventAttributes(RequestCancelActivityTaskFailedEventAttributes requestCancelActivityTaskFailedEventAttributes) If the event is of type
RequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
requestCancelActivityTaskFailedEventAttributes- If the event is of typeRequestCancelActivityTaskFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStartTimerFailedEventAttributes
public void setStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes) If the event is of type
StartTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
startTimerFailedEventAttributes- If the event is of typeStartTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getStartTimerFailedEventAttributes
If the event is of type
StartTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
StartTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withStartTimerFailedEventAttributes
public HistoryEvent withStartTimerFailedEventAttributes(StartTimerFailedEventAttributes startTimerFailedEventAttributes) If the event is of type
StartTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
startTimerFailedEventAttributes- If the event is of typeStartTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCancelTimerFailedEventAttributes
public void setCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes) If the event is of type
CancelTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
cancelTimerFailedEventAttributes- If the event is of typeCancelTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getCancelTimerFailedEventAttributes
If the event is of type
CancelTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
CancelTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withCancelTimerFailedEventAttributes
public HistoryEvent withCancelTimerFailedEventAttributes(CancelTimerFailedEventAttributes cancelTimerFailedEventAttributes) If the event is of type
CancelTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
cancelTimerFailedEventAttributes- If the event is of typeCancelTimerFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStartChildWorkflowExecutionFailedEventAttributes
public void setStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes) If the event is of type
StartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
startChildWorkflowExecutionFailedEventAttributes- If the event is of typeStartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
getStartChildWorkflowExecutionFailedEventAttributes
public StartChildWorkflowExecutionFailedEventAttributes getStartChildWorkflowExecutionFailedEventAttributes()If the event is of type
StartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- If the event is of type
StartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.
-
withStartChildWorkflowExecutionFailedEventAttributes
public HistoryEvent withStartChildWorkflowExecutionFailedEventAttributes(StartChildWorkflowExecutionFailedEventAttributes startChildWorkflowExecutionFailedEventAttributes) If the event is of type
StartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Parameters:
startChildWorkflowExecutionFailedEventAttributes- If the event is of typeStartChildWorkflowExecutionFailedthen this member is set and provides detailed information about the event. It is not set for other event types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLambdaFunctionScheduledEventAttributes
public void setLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes) - Parameters:
lambdaFunctionScheduledEventAttributes-
-
getLambdaFunctionScheduledEventAttributes
- Returns:
-
withLambdaFunctionScheduledEventAttributes
public HistoryEvent withLambdaFunctionScheduledEventAttributes(LambdaFunctionScheduledEventAttributes lambdaFunctionScheduledEventAttributes) - Parameters:
lambdaFunctionScheduledEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLambdaFunctionStartedEventAttributes
public void setLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes) - Parameters:
lambdaFunctionStartedEventAttributes-
-
getLambdaFunctionStartedEventAttributes
- Returns:
-
withLambdaFunctionStartedEventAttributes
public HistoryEvent withLambdaFunctionStartedEventAttributes(LambdaFunctionStartedEventAttributes lambdaFunctionStartedEventAttributes) - Parameters:
lambdaFunctionStartedEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLambdaFunctionCompletedEventAttributes
public void setLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes) - Parameters:
lambdaFunctionCompletedEventAttributes-
-
getLambdaFunctionCompletedEventAttributes
- Returns:
-
withLambdaFunctionCompletedEventAttributes
public HistoryEvent withLambdaFunctionCompletedEventAttributes(LambdaFunctionCompletedEventAttributes lambdaFunctionCompletedEventAttributes) - Parameters:
lambdaFunctionCompletedEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLambdaFunctionFailedEventAttributes
public void setLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes) - Parameters:
lambdaFunctionFailedEventAttributes-
-
getLambdaFunctionFailedEventAttributes
- Returns:
-
withLambdaFunctionFailedEventAttributes
public HistoryEvent withLambdaFunctionFailedEventAttributes(LambdaFunctionFailedEventAttributes lambdaFunctionFailedEventAttributes) - Parameters:
lambdaFunctionFailedEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLambdaFunctionTimedOutEventAttributes
public void setLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes) - Parameters:
lambdaFunctionTimedOutEventAttributes-
-
getLambdaFunctionTimedOutEventAttributes
- Returns:
-
withLambdaFunctionTimedOutEventAttributes
public HistoryEvent withLambdaFunctionTimedOutEventAttributes(LambdaFunctionTimedOutEventAttributes lambdaFunctionTimedOutEventAttributes) - Parameters:
lambdaFunctionTimedOutEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setScheduleLambdaFunctionFailedEventAttributes
public void setScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes) - Parameters:
scheduleLambdaFunctionFailedEventAttributes-
-
getScheduleLambdaFunctionFailedEventAttributes
- Returns:
-
withScheduleLambdaFunctionFailedEventAttributes
public HistoryEvent withScheduleLambdaFunctionFailedEventAttributes(ScheduleLambdaFunctionFailedEventAttributes scheduleLambdaFunctionFailedEventAttributes) - Parameters:
scheduleLambdaFunctionFailedEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStartLambdaFunctionFailedEventAttributes
public void setStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes) - Parameters:
startLambdaFunctionFailedEventAttributes-
-
getStartLambdaFunctionFailedEventAttributes
- Returns:
-
withStartLambdaFunctionFailedEventAttributes
public HistoryEvent withStartLambdaFunctionFailedEventAttributes(StartLambdaFunctionFailedEventAttributes startLambdaFunctionFailedEventAttributes) - Parameters:
startLambdaFunctionFailedEventAttributes-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
-
equals
-
hashCode
-
clone
-