aws.sagemaker.list_compilation_jobs
Example SQL Queries
SELECT * FROMaws.sagemaker.list_compilation_jobs;Description
Lists model compilation jobs that satisfy various filters.
To create a model compilation job, use CreateCompilationJob. To get information about a particular model compilation job you have created, use DescribeCompilationJob.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column A filter that returns the model compilation jobs that were created after a specified time. | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns the model compilation jobs that were created before a specified time. | TIMESTAMP_S |
| last_modified_time_after Input Column A filter that returns the model compilation jobs that were modified after a specified time. | TIMESTAMP_S |
| last_modified_time_before Input Column A filter that returns the model compilation jobs that were modified before a specified time. | TIMESTAMP_S |
| name_contains Input Column A filter that returns the model compilation jobs whose name contains a specified string. | VARCHAR |
| sort_by Input Column The field by which to sort results. 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 model compilation jobs with a specific CompilationJobStatus 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
| |
| compilation_end_time The time when the model compilation job completed. | TIMESTAMP_S |
| compilation_job_arn The Amazon Resource Name (ARN) of the model compilation job. | VARCHAR |
| compilation_job_name The name of the model compilation job that you want a summary for. | VARCHAR |
| compilation_job_status The status of the model compilation job. | VARCHAR |
| compilation_start_time The time when the model compilation job started. | TIMESTAMP_S |
| compilation_target_device The type of device that the model will run on after the compilation job has completed. | VARCHAR |
| compilation_target_platform_accelerator The type of accelerator that the model will run on after the compilation job has completed. | VARCHAR |
| compilation_target_platform_arch The type of architecture that the model will run on after the compilation job has completed. | VARCHAR |
| compilation_target_platform_os The type of OS that the model will run on after the compilation job has completed. | VARCHAR |
| creation_time The time when the model compilation job was created. | TIMESTAMP_S |
| last_modified_time The time when the model compilation job was last modified. | TIMESTAMP_S |