Amazon Cognito · Schema
UpdateResourceServerRequest
UpdateResourceServerRequest schema from Amazon Cognito
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC
Properties
| Name | Type | Description |
|---|---|---|
| UserPoolId | object | |
| Identifier | object | |
| Name | object | |
| Scopes | object |
JSON Schema
{
"type": "object",
"properties": {
"UserPoolId": {
"allOf": [
{
"$ref": "#/components/schemas/UserPoolIdType"
},
{
"description": "The user pool ID for the user pool."
}
]
},
"Identifier": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceServerIdentifierType"
},
{
"description": "The identifier for the resource server."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceServerNameType"
},
{
"description": "The name of the resource server."
}
]
},
"Scopes": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceServerScopeListType"
},
{
"description": "The scope values to be set for the resource server."
}
]
}
},
"required": [
"UserPoolId",
"Identifier",
"Name"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-update-resource-server-request-schema.json",
"title": "UpdateResourceServerRequest",
"description": "UpdateResourceServerRequest schema from Amazon Cognito"
}