aws.bedrock.list_model_invocation_jobs
Example SQL Queries
SELECT * FROMaws.bedrock.list_model_invocation_jobs;Description
Lists all batch inference jobs in the account. For more information, see View details about a batch inference job.
Table Definition
| Column Name | Column Data Type |
|---|---|
| name_contains Input Column Specify a string to filter for batch inference jobs whose names contain the string. | VARCHAR |
| sort_by Input Column An attribute by which to sort the results. | VARCHAR |
| sort_order Input Column Specifies whether to sort the results by ascending or descending order. | VARCHAR |
| status_equals Input Column Specify a status to filter for batch inference jobs whose statuses match the string you specify. | VARCHAR |
| submit_time_after Input Column Specify a time to filter for batch inference jobs that were submitted after the time you specify. | TIMESTAMP_S |
| submit_time_before Input Column Specify a time to filter for batch inference jobs that were submitted before the time you specify. | TIMESTAMP_S |
| _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 |
| client_request_token A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency. | VARCHAR |
| end_time The time at which the batch inference job ended. | TIMESTAMP_S |
| input_data_config Details about the location of the input to the batch inference job. | STRUCT( |
Show child fields
| |
| job_arn The Amazon Resource Name (ARN) of the batch inference job. | VARCHAR |
| job_expiration_time The time at which the batch inference job times or timed out. | TIMESTAMP_S |
| job_name The name of the batch inference job. | VARCHAR |
| last_modified_time The time at which the batch inference job was last modified. | TIMESTAMP_S |
| message If the batch inference job failed, this field contains a message describing why the job failed. | VARCHAR |
| model_id The unique identifier of the foundation model used for model inference. | VARCHAR |
| output_data_config Details about the location of the output of the batch inference job. | STRUCT( |
Show child fields
| |
| role_arn The Amazon Resource Name (ARN) of the service role with permissions to carry out and manage batch inference. You can use the console to create a default service role or follow the steps at Create a service role for batch inference. | VARCHAR |
| status The status of the batch inference job. | VARCHAR |
| submit_time The time at which the batch inference job was submitted. | TIMESTAMP_S |
| timeout_duration_in_hours The number of hours after which the batch inference job was set to time out. | BIGINT |