ActivityTypeInfo

Detailed information about an activity type.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
activityType object
status object
description object
creationDate object
deprecationDate object
View JSON Schema on GitHub

JSON Schema

amazon-swf-activitytypeinfo-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "activityType",
    "status",
    "creationDate"
  ],
  "properties": {
    "activityType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActivityType"
        },
        {
          "description": "The <a>ActivityType</a> type structure representing the activity type."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegistrationStatus"
        },
        {
          "description": "The current status of the activity type."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "The description of the activity type provided in <a>RegisterActivityType</a>."
        }
      ]
    },
    "creationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time this activity type was created through <a>RegisterActivityType</a>."
        }
      ]
    },
    "deprecationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "If DEPRECATED, the date and time <a>DeprecateActivityType</a> was called."
        }
      ]
    }
  },
  "description": "Detailed information about an activity type.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ActivityTypeInfo"
}