List Async Invokes
bedrockruntime_list_async_invokes | R Documentation |
Lists asynchronous invocations¶
Description¶
Lists asynchronous invocations.
Usage¶
bedrockruntime_list_async_invokes(submitTimeAfter, submitTimeBefore,
statusEquals, maxResults, nextToken, sortBy, sortOrder)
Arguments¶
submitTimeAfter
Include invocations submitted after this time.
submitTimeBefore
Include invocations submitted before this time.
statusEquals
Filter invocations by status.
maxResults
The maximum number of invocations to return in one page of results.
nextToken
Specify the pagination token from a previous request to retrieve the next page of results.
sortBy
How to sort the response.
sortOrder
The sorting order for the response.
Value¶
A list with the following syntax:
list(
nextToken = "string",
asyncInvokeSummaries = list(
list(
invocationArn = "string",
modelArn = "string",
clientRequestToken = "string",
status = "InProgress"|"Completed"|"Failed",
failureMessage = "string",
submitTime = as.POSIXct(
"2015-01-01"
),
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
outputDataConfig = list(
s3OutputDataConfig = list(
s3Uri = "string",
kmsKeyId = "string",
bucketOwner = "string"
)
)
)
)
)