Get Provisioned Model Throughput
bedrock_get_provisioned_model_throughput | R Documentation |
Returns details for a Provisioned Throughput¶
Description¶
Returns details for a Provisioned Throughput. For more information, see Provisioned Throughput in the Amazon Bedrock User Guide.
Usage¶
Arguments¶
provisionedModelId
[required] The Amazon Resource Name (ARN) or name of the Provisioned Throughput.
Value¶
A list with the following syntax:
list(
modelUnits = 123,
desiredModelUnits = 123,
provisionedModelName = "string",
provisionedModelArn = "string",
modelArn = "string",
desiredModelArn = "string",
foundationModelArn = "string",
status = "Creating"|"InService"|"Updating"|"Failed",
creationTime = as.POSIXct(
"2015-01-01"
),
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
failureMessage = "string",
commitmentDuration = "OneMonth"|"SixMonths",
commitmentExpirationTime = as.POSIXct(
"2015-01-01"
)
)