List Provisioned Model Throughputs
| bedrock_list_provisioned_model_throughputs | R Documentation |
Lists the Provisioned Throughputs in the account¶
Description¶
Lists the Provisioned Throughputs in the account. For more information, see Provisioned Throughput in the Amazon Bedrock User Guide.
Usage¶
bedrock_list_provisioned_model_throughputs(creationTimeAfter,
creationTimeBefore, statusEquals, modelArnEquals, nameContains,
maxResults, nextToken, sortBy, sortOrder)
Arguments¶
creationTimeAfterA filter that returns Provisioned Throughputs created after the specified time.
creationTimeBeforeA filter that returns Provisioned Throughputs created before the specified time.
statusEqualsA filter that returns Provisioned Throughputs if their statuses matches the value that you specify.
modelArnEqualsA filter that returns Provisioned Throughputs whose model Amazon Resource Name (ARN) is equal to the value that you specify.
nameContainsA filter that returns Provisioned Throughputs if their name contains the expression that you specify.
maxResultsTHe maximum number of results to return in the response. If there are more results than the number you specified, the response returns a
nextTokenvalue. To see the next batch of results, send thenextTokenvalue in another list request.nextTokenIf there are more results than the number you specified in the
maxResultsfield, the response returns anextTokenvalue. To see the next batch of results, specify thenextTokenvalue in this field.sortByThe field by which to sort the returned list of Provisioned Throughputs.
sortOrderThe sort order of the results.
Value¶
A list with the following syntax:
list(
nextToken = "string",
provisionedModelSummaries = list(
list(
provisionedModelName = "string",
provisionedModelArn = "string",
modelArn = "string",
desiredModelArn = "string",
foundationModelArn = "string",
modelUnits = 123,
desiredModelUnits = 123,
status = "Creating"|"InService"|"Updating"|"Failed",
commitmentDuration = "OneMonth"|"SixMonths",
commitmentExpirationTime = as.POSIXct(
"2015-01-01"
),
creationTime = as.POSIXct(
"2015-01-01"
),
lastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_provisioned_model_throughputs(
creationTimeAfter = as.POSIXct(
"2015-01-01"
),
creationTimeBefore = as.POSIXct(
"2015-01-01"
),
statusEquals = "Creating"|"InService"|"Updating"|"Failed",
modelArnEquals = "string",
nameContains = "string",
maxResults = 123,
nextToken = "string",
sortBy = "CreationTime",
sortOrder = "Ascending"|"Descending"
)