Amazon CodePipeline · JSON Structure

Amazon Codepipeline Tag Resource Input Structure

TagResourceInput schema from Amazon CodePipeline

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

TagResourceInput 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 tags

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-tag-resource-input-structure.json",
  "name": "TagResourceInput",
  "description": "TagResourceInput schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "resourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the resource you want to add tags to."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "The tags you want to modify or add to the resource."
        }
      ]
    }
  },
  "required": [
    "resourceArn",
    "tags"
  ]
}