DomainConfiguration

Contains the configuration settings of a domain.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
workflowExecutionRetentionPeriodInDays object
View JSON Schema on GitHub

JSON Schema

amazon-swf-domainconfiguration-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "workflowExecutionRetentionPeriodInDays"
  ],
  "properties": {
    "workflowExecutionRetentionPeriodInDays": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DurationInDays"
        },
        {
          "description": "The retention period for workflow executions in this domain."
        }
      ]
    }
  },
  "description": "Contains the configuration settings of a domain.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DomainConfiguration"
}