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