{
"type": "object",
"properties": {
"AccessToken": {
"allOf": [
{
"$ref": "#/components/schemas/TokenModelType"
},
{
"description": "A valid access token that Amazon Cognito issued to the user whose list of devices you want to view."
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/QueryLimitType"
},
{
"description": "The limit of the device request."
}
]
},
"PaginationToken": {
"allOf": [
{
"$ref": "#/components/schemas/SearchPaginationTokenType"
},
{
"description": "The pagination token for the list request."
}
]
}
},
"required": [
"AccessToken"
],
"description": "Represents the request to list the devices.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-list-devices-request-schema.json",
"title": "ListDevicesRequest"
}