aws.bedrock.list_imported_models
Example SQL Queries
SELECT * FROMaws.bedrock.list_imported_models;Description
Returns a list of models you've imported. You can filter the results to return based on one or more criteria. For more information, see Import a customized model in the Amazon Bedrock User Guide.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column Return imported models that were created after the specified time. | TIMESTAMP_S |
| creation_time_before Input Column Return imported models that created before the specified time. | TIMESTAMP_S |
| name_contains Input Column Return imported models only if the model name contains these characters. | VARCHAR |
| sort_by Input Column The field to sort by in the returned list of imported models. | VARCHAR |
| sort_order Input Column Specifies whetehr to sort the results in ascending or descending order. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| creation_time Creation time of the imported model. | TIMESTAMP_S |
| model_arn The Amazon Resource Name (ARN) of the imported model. | VARCHAR |
| model_name Name of the imported model. | VARCHAR |