Amazon Cognito · Schema
UpdateIdentityProviderRequest
UpdateIdentityProviderRequest schema from Amazon Cognito API
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity
Properties
| Name | Type | Description |
|---|---|---|
| UserPoolId | object | |
| ProviderName | object | |
| ProviderDetails | object | |
| AttributeMapping | object | |
| IdpIdentifiers | object |
JSON Schema
{
"$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-update-identity-provider-request-schema.json",
"title": "UpdateIdentityProviderRequest",
"description": "UpdateIdentityProviderRequest schema from Amazon Cognito API",
"type": "object",
"properties": {
"UserPoolId": {
"allOf": [
{
"$ref": "#/components/schemas/UserPoolIdType"
},
{
"description": "The user pool ID."
}
]
},
"ProviderName": {
"allOf": [
{
"$ref": "#/components/schemas/ProviderNameType"
},
{
"description": "The IdP name."
}
]
},
"ProviderDetails": {
"allOf": [
{
"$ref": "#/components/schemas/ProviderDetailsType"
},
{
"description": "The IdP details to be updated, such as <code>MetadataURL</code> and <code>MetadataFile</code>."
}
]
},
"AttributeMapping": {
"allOf": [
{
"$ref": "#/components/schemas/AttributeMappingType"
},
{
"description": "The IdP attribute mapping to be changed."
}
]
},
"IdpIdentifiers": {
"allOf": [
{
"$ref": "#/components/schemas/IdpIdentifiersListType"
},
{
"description": "A list of IdP identifiers."
}
]
}
},
"required": [
"UserPoolId",
"ProviderName"
]
}