Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Untag Resource Input Structure

UntagResourceInput schema from Amazon CodeDeploy

Type: object Properties: 2 Required: 2
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

UntagResourceInput is a JSON Structure definition published by Amazon CodeDeploy, 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-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-untag-resource-input-structure.json",
  "name": "UntagResourceInput",
  "description": "UntagResourceInput schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": " The Amazon Resource Name (ARN) that specifies from which resource to disassociate the tags with the keys in the <code>TagKeys</code> input parameter. "
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": " A list of keys of <code>Tag</code> objects. The <code>Tag</code> objects identified by the keys are disassociated from the resource specified by the <code>ResourceArn</code> input parameter. "
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "TagKeys"
  ]
}