Amazon Cognito · JSON Structure

Cognito Identity Tag Resource Input Structure

TagResourceInput schema from Amazon Cognito

Type: object Properties: 2 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

TagResourceInput is a JSON Structure definition published by Amazon Cognito, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ResourceArn Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-identity-tag-resource-input-structure.json",
  "name": "TagResourceInput",
  "description": "TagResourceInput schema from Amazon Cognito"
}