{ "$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-create-identity-provider-request-schema.json", "title": "CreateIdentityProviderRequest", "description": "CreateIdentityProviderRequest schema from Amazon Cognito API", "type": "object", "properties": { "UserPoolId": { "allOf": [ { "$ref": "#/components/schemas/UserPoolIdType" }, { "description": "The user pool ID." } ] }, "ProviderName": { "allOf": [ { "$ref": "#/components/schemas/ProviderNameTypeV1" }, { "description": "The IdP name." } ] }, "ProviderType": { "allOf": [ { "$ref": "#/components/schemas/IdentityProviderTypeType" }, { "description": "The IdP type." } ] }, "ProviderDetails": { "allOf": [ { "$ref": "#/components/schemas/ProviderDetailsType" }, { "description": "

The IdP details. The following list describes the provider detail keys for each IdP type.

" } ] }, "AttributeMapping": { "allOf": [ { "$ref": "#/components/schemas/AttributeMappingType" }, { "description": "A mapping of IdP attributes to standard and custom user pool attributes." } ] }, "IdpIdentifiers": { "allOf": [ { "$ref": "#/components/schemas/IdpIdentifiersListType" }, { "description": "A list of IdP identifiers." } ] } }, "required": [ "UserPoolId", "ProviderName", "ProviderType", "ProviderDetails" ] }