{
"type": "object",
"required": [
"decisionTaskCompletedEventId",
"newExecutionRunId",
"taskList",
"childPolicy",
"workflowType"
],
"properties": {
"input": {
"allOf": [
{
"$ref": "#/components/schemas/Data"
},
{
"description": "The input provided to the new workflow execution."
}
]
},
"decisionTaskCompletedEventId": {
"allOf": [
{
"$ref": "#/components/schemas/EventId"
},
{
"description": "The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the ContinueAsNewWorkflowExecution decision that started this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event."
}
]
},
"newExecutionRunId": {
"allOf": [
{
"$ref": "#/components/schemas/WorkflowRunId"
},
{
"description": "The runId of the new workflow execution."
}
]
},
"executionStartToCloseTimeout": {
"allOf": [
{
"$ref": "#/components/schemas/DurationInSecondsOptional"
},
{
"description": "
The total duration allowed for the new workflow execution.
The duration is specified in seconds, an integer greater than or equal to 0. You can use NONE to specify unlimited duration.
The maximum duration of decision tasks for the new workflow execution.
The duration is specified in seconds, an integer greater than or equal to 0. You can use NONE to specify unlimited duration.
The policy to use for the child workflow executions of the new execution if it is terminated by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout.
The supported child policies are:
TERMINATE \u2013 The child executions are terminated.
REQUEST_CANCEL \u2013 A request to cancel is attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.
ABANDON \u2013 No action is taken. The child executions continue to run.
WorkflowExecutionContinuedAsNew event.",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WorkflowExecutionContinuedAsNewEventAttributes"
}