Skip to content

Search Jobs

braket_search_jobs R Documentation

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

Description

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

Usage

braket_search_jobs(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 SearchJobsFilter objects to use when searching for hybrid jobs.

Value

A list with the following syntax:

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

Request syntax

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