aws.sagemaker.list_transform_jobs
Example SQL Queries
SELECT * FROMaws.sagemaker.list_transform_jobs;Description
Lists transform jobs.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column A filter that returns only transform jobs created after the specified time. | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns only transform jobs created before the specified time. | TIMESTAMP_S |
| last_modified_time_after Input Column A filter that returns only transform jobs modified after the specified time. | TIMESTAMP_S |
| last_modified_time_before Input Column A filter that returns only transform jobs modified before the specified time. | TIMESTAMP_S |
| name_contains Input Column A string in the transform job name. This filter returns only transform 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 Descending. | VARCHAR |
| status_equals Input Column A filter that retrieves only transform 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 A timestamp that shows when the transform Job was created. | TIMESTAMP_S |
| failure_reason If the transform job failed, the reason it failed. | VARCHAR |
| last_modified_time Indicates when the transform job was last modified. | TIMESTAMP_S |
| transform_end_time Indicates when the transform job ends on compute instances. For successful jobs and stopped jobs, this is the exact time recorded after the results are uploaded. For failed jobs, this is when Amazon SageMaker detected that the job failed. | TIMESTAMP_S |
| transform_job_arn The Amazon Resource Name (ARN) of the transform job. | VARCHAR |
| transform_job_name The name of the transform job. | VARCHAR |
| transform_job_status The status of the transform job. | VARCHAR |