aws.sagemaker.list_processing_jobs
Example SQL Queries
SELECT * FROMaws.sagemaker.list_processing_jobs;Description
Lists processing jobs that satisfy various filters.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column A filter that returns only processing jobs created after the specified time. | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns only processing jobs created after the specified time. | TIMESTAMP_S |
| last_modified_time_after Input Column A filter that returns only processing jobs modified after the specified time. | TIMESTAMP_S |
| last_modified_time_before Input Column A filter that returns only processing jobs modified before the specified time. | TIMESTAMP_S |
| name_contains Input Column A string in the processing job name. This filter returns only processing jobs whose name contains the specified string. | VARCHAR |
| sort_by Input Column The field to sort results by. The default is CreationTime. | VARCHAR |
| sort_order Input Column The sort order for results. The default is Ascending. | VARCHAR |
| status_equals Input Column A filter that retrieves only processing jobs with a specific 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
| |
| creation_time The time at which the processing job was created. | TIMESTAMP_S |
| exit_message An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits. | VARCHAR |
| failure_reason A string, up to one KB in size, that contains the reason a processing job failed, if it failed. | VARCHAR |
| last_modified_time A timestamp that indicates the last time the processing job was modified. | TIMESTAMP_S |
| processing_end_time The time at which the processing job completed. | TIMESTAMP_S |
| processing_job_arn The Amazon Resource Name (ARN) of the processing job.. | VARCHAR |
| processing_job_name The name of the processing job. | VARCHAR |
| processing_job_status The status of the processing job. | VARCHAR |