Search Devices
| braket_search_devices | R Documentation |
Searches for devices using the specified filters¶
Description¶
Searches for devices using the specified filters.
Usage¶
Arguments¶
filters[required] The filter values to use to search for a device.
maxResultsThe maximum number of results to return in the response.
nextTokenA token used for pagination of results returned in the response. Use the token returned from the previous request continue results where the previous request ended.
Value¶
A list with the following syntax:
list(
devices = list(
list(
deviceArn = "string",
deviceName = "string",
deviceStatus = "ONLINE"|"OFFLINE"|"RETIRED",
deviceType = "QPU"|"SIMULATOR",
providerName = "string"
)
),
nextToken = "string"
)