Skip to content

aws.bedrock.list_model_invocation_jobs

Example SQL Queries

SELECT * FROM
aws.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 NameColumn 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(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_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(
"s3_input_data_config" STRUCT(
"s3_input_format" VARCHAR,
"s3_uri" VARCHAR
)
)
Show child fields
input_data_config.s3_input_data_config

Contains the configuration of the S3 location of the input data.

Show child fields
input_data_config.s3_input_data_config.s3_input_format

The format of the input data.

input_data_config.s3_input_data_config.s3_uri

The S3 location of the input data.

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(
"s3_output_data_config" STRUCT(
"s3_uri" VARCHAR,
"s3_encryption_key_id" VARCHAR
)
)
Show child fields
output_data_config.s3_output_data_config

Contains the configuration of the S3 location of the output data.

Show child fields
output_data_config.s3_output_data_config.s3_encryption_key_id

The unique identifier of the key that encrypts the S3 location of the output data.

output_data_config.s3_output_data_config.s3_uri

The S3 location of the output data.

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