Skip to content

Search Quantum Tasks

braket_search_quantum_tasks R Documentation

Searches for tasks that match the specified filter values

Description

Searches for tasks that match the specified filter values.

Usage

braket_search_quantum_tasks(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

Maximum number of results to return in the response.

filters

[required] Array of SearchQuantumTasksFilter objects to use when searching for quantum tasks.

Value

A list with the following syntax:

list(
  quantumTasks = list(
    list(
      quantumTaskArn = "string",
      status = "CREATED"|"QUEUED"|"RUNNING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED",
      deviceArn = "string",
      shots = 123,
      outputS3Bucket = "string",
      outputS3Directory = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      endedAt = as.POSIXct(
        "2015-01-01"
      ),
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$search_quantum_tasks(
  nextToken = "string",
  maxResults = 123,
  filters = list(
    list(
      name = "string",
      values = list(
        "string"
      ),
      operator = "LT"|"LTE"|"EQUAL"|"GT"|"GTE"|"BETWEEN"
    )
  )
)