WorkflowExecutionStartedEventAttributes class

Provides details of WorkflowExecutionStarted event.

Constructors

WorkflowExecutionStartedEventAttributes({required ChildPolicy childPolicy, required TaskList taskList, required WorkflowType workflowType, String? continuedExecutionRunId, String? executionStartToCloseTimeout, String? input, String? lambdaRole, int? parentInitiatedEventId, WorkflowExecution? parentWorkflowExecution, List<String>? tagList, String? taskPriority, String? taskStartToCloseTimeout})
WorkflowExecutionStartedEventAttributes.fromJson(Map<String, dynamic> json)
factory

Properties

childPolicy ChildPolicy
The policy to use for the child workflow executions if this workflow execution is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout.
final
continuedExecutionRunId String?
If this workflow execution was started due to a ContinueAsNewWorkflowExecution decision, then it contains the runId of the previous workflow execution that was closed and continued as this execution.
final
executionStartToCloseTimeout String?
The maximum duration for this workflow execution.
final
hashCode int
The hash code for this object.
no setterinherited
input String?
The input provided to the workflow execution.
final
lambdaRole String?
The IAM role attached to the workflow execution.
final
parentInitiatedEventId int?
The ID of the StartChildWorkflowExecutionInitiated event corresponding to the StartChildWorkflowExecution Decision to start this workflow execution. The source event with this ID can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
final
parentWorkflowExecution WorkflowExecution?
The source workflow execution that started this workflow execution. The member isn't set if the workflow execution was not started by a workflow.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tagList List<String>?
The list of tags associated with this workflow execution. An execution can have up to 5 tags.
final
taskList TaskList
The name of the task list for scheduling the decision tasks for this workflow execution.
final
taskPriority String?
The priority of the decision tasks in the workflow execution.
final
taskStartToCloseTimeout String?
The maximum duration of decision tasks for this workflow type.
final
workflowType WorkflowType
The workflow type of this execution.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited