Amazon Step Functions · JSON Structure

Amazon Step Functions Tag Resource Input Structure

TagResourceInput schema from Amazon Step Functions API

Type: object Properties: 2 Required: 2
OrchestrationServerlessState MachineWorkflow

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

Properties

resourceArn tags

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-tag-resource-input-structure.json",
  "name": "TagResourceInput",
  "description": "TagResourceInput schema from Amazon Step Functions API",
  "properties": {
    "resourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) for the Step Functions state machine or activity."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "<p>The list of tags to add to a resource.</p> <p>Tags may only contain Unicode letters, digits, white space, or these symbols: <code>_ . : / = + - @</code>.</p>"
        }
      ]
    }
  },
  "required": [
    "resourceArn",
    "tags"
  ]
}