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¶
Arguments¶
filters[required] Array of
SearchQuantumTasksFilterobjects.maxResultsMaximum number of results to return in the response.
nextTokenA 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"
)
)
)
)