Amazon CodePipeline · JSON Structure

Amazon Codepipeline Untag Resource Input Structure

UntagResourceInput schema from Amazon CodePipeline

Type: object Properties: 2 Required: 2
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

UntagResourceInput is a JSON Structure definition published by Amazon CodePipeline, 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 ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-untag-resource-input-structure.json",
  "name": "UntagResourceInput",
  "description": "UntagResourceInput schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "resourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceArn"
        },
        {
          "description": " The Amazon Resource Name (ARN) of the resource to remove tags from."
        }
      ]
    },
    "tagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "The list of keys for the tags to be removed from the resource."
        }
      ]
    }
  },
  "required": [
    "resourceArn",
    "tagKeys"
  ]
}