{ "type": "object", "required": [ "taskStartToCloseTimeout", "executionStartToCloseTimeout", "taskList", "childPolicy" ], "properties": { "taskStartToCloseTimeout": { "allOf": [ { "$ref": "#/components/schemas/DurationInSeconds" }, { "description": "

The maximum duration allowed for decision tasks for this workflow execution.

The duration is specified in seconds, an integer greater than or equal to 0. You can use NONE to specify unlimited duration.

" } ] }, "executionStartToCloseTimeout": { "allOf": [ { "$ref": "#/components/schemas/DurationInSeconds" }, { "description": "

The total duration for this 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 used for the decision tasks generated for this workflow execution." } ] }, "taskPriority": { "allOf": [ { "$ref": "#/components/schemas/TaskPriority" }, { "description": "

The priority assigned to decision tasks for this workflow execution. Valid values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority.

For more information about setting task priority, see Setting Task Priority in the Amazon SWF Developer Guide.

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

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.

The supported child policies are:

" } ] }, "lambdaRole": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The IAM role attached to the child workflow execution." } ] } }, "description": "The configuration settings for a workflow execution including timeout values, tasklist etc. These configuration settings are determined from the defaults specified when registering the workflow type and those specified when starting the workflow execution.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "WorkflowExecutionConfiguration" }