UntagResourceRequest

UntagResourceRequest schema from Amazon CodeArtifact API

AmazonArtifact RepositoryPackage ManagementDevOpsSoftware Supply ChainnpmMavenPyPINuGet

Properties

Name Type Description
tagKeys object
View JSON Schema on GitHub

JSON Schema

codeartifact-untag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-untag-resource-request-schema.json",
  "title": "UntagResourceRequest",
  "description": "UntagResourceRequest schema from Amazon CodeArtifact API",
  "type": "object",
  "properties": {
    "tagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "The tag key for each tag that you want to remove from the resource."
        }
      ]
    }
  },
  "required": [
    "tagKeys"
  ]
}