Skip to content

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(filters, maxResults, nextToken)

Arguments

filters

[required] The filter values to use to search for a device.

maxResults

The maximum number of results to return in the response.

nextToken

A 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"
)

Request syntax

svc$search_devices(
  filters = list(
    list(
      name = "string",
      values = list(
        "string"
      )
    )
  ),
  maxResults = 123,
  nextToken = "string"
)