Get Inference Profile
bedrock_get_inference_profile | R Documentation |
Gets information about an inference profile¶
Description¶
Gets information about an inference profile. For more information, see Increase throughput and resilience with cross-region inference in Amazon Bedrock. in the Amazon Bedrock User Guide.
Usage¶
Arguments¶
inferenceProfileIdentifier
[required] The ID or Amazon Resource Name (ARN) of the inference profile.
Value¶
A list with the following syntax:
list(
inferenceProfileName = "string",
description = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
inferenceProfileArn = "string",
models = list(
list(
modelArn = "string"
)
),
inferenceProfileId = "string",
status = "ACTIVE",
type = "SYSTEM_DEFINED"|"APPLICATION"
)