Terraform data source for managing an AWS Bedrock Foundation Model.
data "aws_bedrock_foundation_models" "test" {}
data "aws_bedrock_foundation_model" "test" {
model_id = data.aws_bedrock_foundation_models.test.model_summaries[0].model_id
}
The following argument are required:
model_id
– (Required) Model identifier.This data source exports the following attributes in addition to the arguments above:
customizations_supported
- Customizations that the model supports.inference_types_supported
- Inference types that the model supports.input_modalities
- Input modalities that the model supports.model_arn
- Model ARN.model_name
- Model name.output_modalities
- Output modalities that the model supports.provider_name
- Model provider name.response_streaming_supported
- Indicates whether the model supports streaming.