Skip to content

Search Jobs

braket_search_jobs R Documentation

Searches for Amazon Braket jobs that match the specified filter values

Description

Searches for Amazon Braket jobs that match the specified filter values.

Usage

braket_search_jobs(filters, maxResults, nextToken)

Arguments

filters

[required] The filter values to use when searching for a job.

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 to continue results where the previous request ended.

Value

A list with the following syntax:

list(
  jobs = list(
    list(
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      device = "string",
      endedAt = as.POSIXct(
        "2015-01-01"
      ),
      jobArn = "string",
      jobName = "string",
      startedAt = as.POSIXct(
        "2015-01-01"
      ),
      status = "QUEUED"|"RUNNING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

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