DeprecateActivityTypeInput

AutomationTask CoordinationWorkflow

Properties

Name Type Description
domain object
activityType object
View JSON Schema on GitHub

JSON Schema

amazon-swf-deprecateactivitytypeinput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain",
    "activityType"
  ],
  "title": "DeprecateActivityTypeInput",
  "properties": {
    "domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainName"
        },
        {
          "description": "The name of the domain in which the activity type is registered."
        }
      ]
    },
    "activityType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActivityType"
        },
        {
          "description": "The activity type to deprecate."
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}