Amazon CodeDeploy · Schema

TagResourceInput

TagResourceInput schema from Amazon CodeDeploy

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
ResourceArn object
Tags object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-tag-resource-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-tag-resource-input-schema.json",
  "title": "TagResourceInput",
  "description": "TagResourceInput schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": " The ARN of a resource, such as a CodeDeploy application or deployment group. "
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": " A list of tags that <code>TagResource</code> associates with a resource. The resource is identified by the <code>ResourceArn</code> input parameter. "
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "Tags"
  ]
}