Amazon Cognito · Schema
ConfirmDeviceRequest
Confirms the device request.
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity
Properties
| Name | Type | Description |
|---|---|---|
| AccessToken | object | |
| DeviceKey | object | |
| DeviceSecretVerifierConfig | object | |
| DeviceName | 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-confirm-device-request-schema.json",
"title": "ConfirmDeviceRequest",
"description": "Confirms the device request.",
"type": "object",
"properties": {
"AccessToken": {
"allOf": [
{
"$ref": "#/components/schemas/TokenModelType"
},
{
"description": "A valid access token that Amazon Cognito issued to the user whose device you want to confirm."
}
]
},
"DeviceKey": {
"allOf": [
{
"$ref": "#/components/schemas/DeviceKeyType"
},
{
"description": "The device key."
}
]
},
"DeviceSecretVerifierConfig": {
"allOf": [
{
"$ref": "#/components/schemas/DeviceSecretVerifierConfigType"
},
{
"description": "The configuration of the device secret verifier."
}
]
},
"DeviceName": {
"allOf": [
{
"$ref": "#/components/schemas/DeviceNameType"
},
{
"description": "The device name."
}
]
}
},
"required": [
"AccessToken",
"DeviceKey"
]
}