aws.sagemaker.list_experiments
Example SQL Queries
SELECT * FROMaws.sagemaker.list_experiments;Description
Lists all the experiments in your account. The list can be filtered to show only experiments that were created in a specific time range. The list can be sorted by experiment name or creation time.
Table Definition
| Column Name | Column Data Type |
|---|---|
| created_after Input Column A filter that returns only experiments created after the specified time. | TIMESTAMP_S |
| created_before Input Column A filter that returns only experiments created before the specified time. | TIMESTAMP_S |
| sort_by Input Column The property used to sort results. The default value is CreationTime. | VARCHAR |
| sort_order Input Column The sort order. The default value is Descending. | 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 When the experiment was created. | TIMESTAMP_S |
| display_name The name of the experiment as displayed. If DisplayName isn't specified, ExperimentName is displayed. | VARCHAR |
| experiment_arn The Amazon Resource Name (ARN) of the experiment. | VARCHAR |
| experiment_name The name of the experiment. | VARCHAR |
| experiment_source The source of the experiment. | STRUCT( |
Show child fields
| |
| last_modified_time When the experiment was last modified. | TIMESTAMP_S |