Amazon Cognito · JSON Structure

Cognito Idp Update Device Status Request Structure

Represents the request to update the device status.

Type: object Properties: 3 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

Properties

AccessToken DeviceKey DeviceRememberedStatus

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 whose device status you want to update."
        }
      ]
    },
    "DeviceKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceKeyType"
        },
        {
          "description": "The device key."
        }
      ]
    },
    "DeviceRememberedStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceRememberedStatusType"
        },
        {
          "description": "The status of whether a device is remembered."
        }
      ]
    }
  },
  "required": [
    "AccessToken",
    "DeviceKey"
  ],
  "description": "Represents the request to update the device status.",
  "$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-device-status-request-structure.json",
  "name": "UpdateDeviceStatusRequest"
}