Amazon Cognito · Schema
UpdateAuthEventFeedbackRequest
UpdateAuthEventFeedbackRequest schema from Amazon Cognito
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC
Properties
| Name | Type | Description |
|---|---|---|
| UserPoolId | object | |
| Username | object | |
| EventId | object | |
| FeedbackToken | object | |
| FeedbackValue | object |
JSON Schema
{
"type": "object",
"properties": {
"UserPoolId": {
"allOf": [
{
"$ref": "#/components/schemas/UserPoolIdType"
},
{
"description": "The user pool ID."
}
]
},
"Username": {
"allOf": [
{
"$ref": "#/components/schemas/UsernameType"
},
{
"description": "The user pool username."
}
]
},
"EventId": {
"allOf": [
{
"$ref": "#/components/schemas/EventIdType"
},
{
"description": "The event ID."
}
]
},
"FeedbackToken": {
"allOf": [
{
"$ref": "#/components/schemas/TokenModelType"
},
{
"description": "The feedback token."
}
]
},
"FeedbackValue": {
"allOf": [
{
"$ref": "#/components/schemas/FeedbackValueType"
},
{
"description": "The authentication event feedback value."
}
]
}
},
"required": [
"UserPoolId",
"Username",
"EventId",
"FeedbackToken",
"FeedbackValue"
],
"$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-auth-event-feedback-request-schema.json",
"title": "UpdateAuthEventFeedbackRequest",
"description": "UpdateAuthEventFeedbackRequest schema from Amazon Cognito"
}