Lists the trial components in your account. You can sort the list by trial component name or creation time. You can filter the list to show only components that were created in a specific time range. You can also filter on one of the following:
See https://www.paws-r-sdk.com/docs/sagemaker_list_trial_components/ for full documentation.
sagemaker_list_trial_components(
ExperimentName = NULL,
TrialName = NULL,
SourceArn = NULL,
CreatedAfter = NULL,
CreatedBefore = NULL,
SortBy = NULL,
SortOrder = NULL,
MaxResults = NULL,
NextToken = NULL
)
A filter that returns only components that are part of the specified
experiment. If you specify ExperimentName
, you can't filter by
SourceArn
or TrialName
.
A filter that returns only components that are part of the specified
trial. If you specify TrialName
, you can't filter by ExperimentName
or SourceArn
.
A filter that returns only components that have the specified source
Amazon Resource Name (ARN). If you specify SourceArn
, you can't filter
by ExperimentName
or TrialName
.
A filter that returns only components created after the specified time.
A filter that returns only components created before the specified time.
The property used to sort results. The default value is CreationTime
.
The sort order. The default value is Descending
.
The maximum number of components to return in the response. The default value is 10.
If the previous call to
list_trial_components
didn't return
the full set of components, the call returns a token for getting the
next set of components.