Amazon Step Functions · JSON Structure

Amazon Step Functions Get Activity Task Input Structure

GetActivityTaskInput schema from Amazon Step Functions API

Type: object Properties: 2 Required: 1
OrchestrationServerlessState MachineWorkflow

GetActivityTaskInput is a JSON Structure definition published by Amazon Step Functions, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

activityArn workerName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-structure/amazon-step-functions-get-activity-task-input-structure.json",
  "name": "GetActivityTaskInput",
  "description": "GetActivityTaskInput schema from Amazon Step Functions API",
  "properties": {
    "activityArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the activity to retrieve tasks from (assigned when you create the task using <a>CreateActivity</a>.)"
        }
      ]
    },
    "workerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "You can provide an arbitrary name in order to identify the worker that the task is assigned to. This name is used when it is logged in the execution history."
        }
      ]
    }
  },
  "required": [
    "activityArn"
  ]
}