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(filters, maxResults, nextToken)
Arguments¶
filters |
[required] Array of |
maxResults |
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(
nextToken = "string",
quantumTasks = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
deviceArn = "string",
endedAt = as.POSIXct(
"2015-01-01"
),
outputS3Bucket = "string",
outputS3Directory = "string",
quantumTaskArn = "string",
shots = 123,
status = "CREATED"|"QUEUED"|"RUNNING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED",
tags = list(
"string"
)
)
)
)
Request syntax¶
svc$search_quantum_tasks(
filters = list(
list(
name = "string",
operator = "LT"|"LTE"|"EQUAL"|"GT"|"GTE"|"BETWEEN",
values = list(
"string"
)
)
),
maxResults = 123,
nextToken = "string"
)