Amazon Cognito · Schema

UntagResourceRequest

UntagResourceRequest schema from Amazon Cognito API

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

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

JSON Schema

user-pools-untag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-untag-resource-request-schema.json",
  "title": "UntagResourceRequest",
  "description": "UntagResourceRequest schema from Amazon Cognito API",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArnType"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the user pool that the tags are assigned to."
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolTagsListType"
        },
        {
          "description": "The keys of the tags to remove from the user pool."
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "TagKeys"
  ]
}