Amazon Step Functions · JSON Structure

Amazon Step Functions Untag Resource Input Structure

UntagResourceInput schema from Amazon Step Functions API

Type: object Properties: 2 Required: 2
OrchestrationServerlessState MachineWorkflow

UntagResourceInput 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 tagKeys

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-untag-resource-input-structure.json",
  "name": "UntagResourceInput",
  "description": "UntagResourceInput 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."
        }
      ]
    },
    "tagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "The list of tags to remove from the resource."
        }
      ]
    }
  },
  "required": [
    "resourceArn",
    "tagKeys"
  ]
}