Amazon Cognito · JSON Structure

Cognito Idp Global Sign Out Request Structure

Represents the request to sign out all devices.

Type: object Properties: 1 Required: 1
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

Properties

AccessToken

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "AccessToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TokenModelType"
        },
        {
          "description": "A valid access token that Amazon Cognito issued to the user who you want to sign out."
        }
      ]
    }
  },
  "required": [
    "AccessToken"
  ],
  "description": "Represents the request to sign out all devices.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-global-sign-out-request-structure.json",
  "name": "GlobalSignOutRequest"
}