Amazon Cognito · Schema
EventFeedbackType
Specifies the event feedback type.
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity
Properties
| Name | Type | Description |
|---|---|---|
| FeedbackValue | object | |
| Provider | object | |
| FeedbackDate | 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-event-feedback-type-schema.json",
"title": "EventFeedbackType",
"description": "Specifies the event feedback type.",
"type": "object",
"properties": {
"FeedbackValue": {
"allOf": [
{
"$ref": "#/components/schemas/FeedbackValueType"
},
{
"description": "The authentication event feedback value. When you provide a <code>FeedbackValue</code> value of <code>valid</code>, you tell Amazon Cognito that you trust a user session where Amazon Cognito has evaluated some level of risk. When you provide a <code>FeedbackValue</code> value of <code>invalid</code>, you tell Amazon Cognito that you don't trust a user session, or you don't believe that Amazon Cognito evaluated a high-enough risk level."
}
]
},
"Provider": {
"allOf": [
{
"$ref": "#/components/schemas/StringType"
},
{
"description": "The provider."
}
]
},
"FeedbackDate": {
"allOf": [
{
"$ref": "#/components/schemas/DateType"
},
{
"description": "The event feedback date."
}
]
}
},
"required": [
"FeedbackValue",
"Provider"
]
}