Amazon Cognito · Schema

TagResourceRequest

TagResourceRequest schema from Amazon Cognito

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

cognito-idp-tag-resource-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArnType"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the user pool to assign the tags to."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolTagsType"
        },
        {
          "description": "The tags to assign to the user pool."
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "Tags"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-tag-resource-request-schema.json",
  "title": "TagResourceRequest",
  "description": "TagResourceRequest schema from Amazon Cognito"
}