aws.sagemaker.list_trials
Example SQL Queries
SELECT * FROMaws.sagemaker.list_trials;Description
Lists the trials in your account. Specify an experiment name to limit the list to the trials that are part of that experiment. Specify a trial component name to limit the list to the trials that associated with that trial component. The list can be filtered to show only trials that were created in a specific time range. The list can be sorted by trial name or creation time.
Table Definition
| Column Name | Column Data Type |
|---|---|
| created_after Input Column A filter that returns only trials created after the specified time. | TIMESTAMP_S |
| created_before Input Column A filter that returns only trials created before the specified time. | TIMESTAMP_S |
| experiment_name Input Column A filter that returns only trials that are part of the specified experiment. | VARCHAR |
| 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 |
| trial_component_name Input Column A filter that returns only trials that are associated with the specified trial component. | 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 trial was created. | TIMESTAMP_S |
| display_name The name of the trial as displayed. If DisplayName isn't specified, TrialName is displayed. | VARCHAR |
| last_modified_time When the trial was last modified. | TIMESTAMP_S |
| trial_arn The Amazon Resource Name (ARN) of the trial. | VARCHAR |
| trial_name The name of the trial. | VARCHAR |
| trial_source The source of the trial. | STRUCT( |
Show child fields
| |