{ "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.

" } ] }, "taskList": { "allOf": [ { "$ref": "#/components/schemas/TaskList" }, { "description": "The task list to use for the decisions of the new (continued) workflow execution." } ] }, "taskPriority": { "allOf": [ { "$ref": "#/components/schemas/TaskPriority" }, { "description": "The priority of the task to use for the decisions of the new (continued) workflow execution." } ] }, "taskStartToCloseTimeout": { "allOf": [ { "$ref": "#/components/schemas/DurationInSecondsOptional" }, { "description": "

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.

" } ] }, "childPolicy": { "allOf": [ { "$ref": "#/components/schemas/ChildPolicy" }, { "description": "

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:

" } ] }, "tagList": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "The list of tags associated with the new workflow execution." } ] }, "workflowType": { "allOf": [ { "$ref": "#/components/schemas/WorkflowType" }, { "description": "The workflow type of this execution." } ] }, "lambdaRole": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The IAM role to attach to the new (continued) workflow execution." } ] } }, "description": "Provides the details of the WorkflowExecutionContinuedAsNew event.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "WorkflowExecutionContinuedAsNewEventAttributes" }