aws.bedrock.list_model_import_jobs
Example SQL Queries
SELECT * FROMaws.bedrock.list_model_import_jobs;Description
Returns a list of import jobs you've submitted. 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 import jobs that were created after the specified time. | TIMESTAMP_S |
| creation_time_before Input Column Return import jobs that were created before the specified time. | TIMESTAMP_S |
| name_contains Input Column Return imported jobs only if the job name contains these characters. | VARCHAR |
| sort_by Input Column The field to sort by in the returned list of imported jobs. | VARCHAR |
| sort_order Input Column Specifies whether to sort the results in ascending or descending order. | VARCHAR |
| status_equals Input Column Return imported jobs with the specified status. | 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 The time import job was created. | TIMESTAMP_S |
| end_time The time when import job ended. | TIMESTAMP_S |
| imported_model_arn The Amazon resource Name (ARN) of the imported model. | VARCHAR |
| imported_model_name The name of the imported model. | VARCHAR |
| job_arn The Amazon Resource Name (ARN) of the import job. | VARCHAR |
| job_name The name of the import job. | VARCHAR |
| last_modified_time The time when the import job was last modified. | TIMESTAMP_S |
| status The status of the imported job. | VARCHAR |