Skip to content

Get Foundation Model Availability

bedrock_get_foundation_model_availability R Documentation

Get information about the Foundation model availability

Description

Get information about the Foundation model availability.

Usage

bedrock_get_foundation_model_availability(modelId)

Arguments

modelId

[required] The model Id of the foundation model.

Value

A list with the following syntax:

list(
  modelId = "string",
  agreementAvailability = list(
    status = "AVAILABLE"|"PENDING"|"NOT_AVAILABLE"|"ERROR",
    errorMessage = "string"
  ),
  authorizationStatus = "AUTHORIZED"|"NOT_AUTHORIZED",
  entitlementAvailability = "AVAILABLE"|"NOT_AVAILABLE",
  regionAvailability = "AVAILABLE"|"NOT_AVAILABLE"
)

Request syntax

svc$get_foundation_model_availability(
  modelId = "string"
)