Amazon Cognito · Schema

TagResourceInput

TagResourceInput schema from Amazon Cognito

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

cognito-identity-tag-resource-input-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ARNString"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the identity pool."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityPoolTagsType"
        },
        {
          "description": "The tags to assign to the identity 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-identity-tag-resource-input-schema.json",
  "title": "TagResourceInput",
  "description": "TagResourceInput schema from Amazon Cognito"
}