Amazon Cognito · Schema

SetPrincipalTagAttributeMapInput

SetPrincipalTagAttributeMapInput schema from Amazon Cognito API

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
IdentityPoolId object
IdentityProviderName object
UseDefaults object
PrincipalTags object
View JSON Schema on GitHub

JSON Schema

identity-pools-set-principal-tag-attribute-map-input-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/identity-pools-set-principal-tag-attribute-map-input-schema.json",
  "title": "SetPrincipalTagAttributeMapInput",
  "description": "SetPrincipalTagAttributeMapInput schema from Amazon Cognito API",
  "type": "object",
  "properties": {
    "IdentityPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityPoolId"
        },
        {
          "description": "The ID of the Identity Pool you want to set attribute mappings for."
        }
      ]
    },
    "IdentityProviderName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityProviderName"
        },
        {
          "description": "The provider name you want to use for attribute mappings."
        }
      ]
    },
    "UseDefaults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UseDefaults"
        },
        {
          "description": "You can use this operation to use default (username and clientID) attribute mappings."
        }
      ]
    },
    "PrincipalTags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PrincipalTags"
        },
        {
          "description": "You can use this operation to add principal tags."
        }
      ]
    }
  },
  "required": [
    "IdentityPoolId",
    "IdentityProviderName"
  ]
}