DomainDetail

Contains details of a domain.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
domainInfo object
configuration object
View JSON Schema on GitHub

JSON Schema

amazon-swf-domaindetail-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domainInfo",
    "configuration"
  ],
  "properties": {
    "domainInfo": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainInfo"
        },
        {
          "description": "The basic information about a domain, such as its name, status, and description."
        }
      ]
    },
    "configuration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainConfiguration"
        },
        {
          "description": "The domain configuration. Currently, this includes only the domain's retention period."
        }
      ]
    }
  },
  "description": "Contains details of a domain.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DomainDetail"
}