Amazon Cognito · JSON Structure

Cognito Idp Update Auth Event Feedback Request Structure

UpdateAuthEventFeedbackRequest schema from Amazon Cognito

Type: object Properties: 5 Required: 5
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

UpdateAuthEventFeedbackRequest is a JSON Structure definition published by Amazon Cognito, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

UserPoolId Username EventId FeedbackToken FeedbackValue

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-update-auth-event-feedback-request-structure.json",
  "name": "UpdateAuthEventFeedbackRequest",
  "description": "UpdateAuthEventFeedbackRequest schema from Amazon Cognito"
}