Interface ListTrialComponentsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListTrialComponentsRequest.Builder,ListTrialComponentsRequest>
,SageMakerRequest.Builder
,SdkBuilder<ListTrialComponentsRequest.Builder,ListTrialComponentsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListTrialComponentsRequest
public static interface ListTrialComponentsRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<ListTrialComponentsRequest.Builder,ListTrialComponentsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTrialComponentsRequest.Builder
createdAfter(Instant createdAfter)
A filter that returns only components created after the specified time.ListTrialComponentsRequest.Builder
createdBefore(Instant createdBefore)
A filter that returns only components created before the specified time.ListTrialComponentsRequest.Builder
experimentName(String experimentName)
A filter that returns only components that are part of the specified experiment.ListTrialComponentsRequest.Builder
maxResults(Integer maxResults)
The maximum number of components to return in the response.ListTrialComponentsRequest.Builder
nextToken(String nextToken)
If the previous call toListTrialComponents
didn't return the full set of components, the call returns a token for getting the next set of components.ListTrialComponentsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListTrialComponentsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListTrialComponentsRequest.Builder
sortBy(String sortBy)
The property used to sort results.ListTrialComponentsRequest.Builder
sortBy(SortTrialComponentsBy sortBy)
The property used to sort results.ListTrialComponentsRequest.Builder
sortOrder(String sortOrder)
The sort order.ListTrialComponentsRequest.Builder
sortOrder(SortOrder sortOrder)
The sort order.ListTrialComponentsRequest.Builder
sourceArn(String sourceArn)
A filter that returns only components that have the specified source Amazon Resource Name (ARN).ListTrialComponentsRequest.Builder
trialName(String trialName)
A filter that returns only components that are part of the specified trial.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
experimentName
ListTrialComponentsRequest.Builder experimentName(String experimentName)
A filter that returns only components that are part of the specified experiment. If you specify
ExperimentName
, you can't filter bySourceArn
orTrialName
.- Parameters:
experimentName
- A filter that returns only components that are part of the specified experiment. If you specifyExperimentName
, you can't filter bySourceArn
orTrialName
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trialName
ListTrialComponentsRequest.Builder trialName(String trialName)
A filter that returns only components that are part of the specified trial. If you specify
TrialName
, you can't filter byExperimentName
orSourceArn
.- Parameters:
trialName
- A filter that returns only components that are part of the specified trial. If you specifyTrialName
, you can't filter byExperimentName
orSourceArn
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceArn
ListTrialComponentsRequest.Builder sourceArn(String sourceArn)
A filter that returns only components that have the specified source Amazon Resource Name (ARN). If you specify
SourceArn
, you can't filter byExperimentName
orTrialName
.- Parameters:
sourceArn
- A filter that returns only components that have the specified source Amazon Resource Name (ARN). If you specifySourceArn
, you can't filter byExperimentName
orTrialName
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAfter
ListTrialComponentsRequest.Builder createdAfter(Instant createdAfter)
A filter that returns only components created after the specified time.
- Parameters:
createdAfter
- A filter that returns only components created after the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdBefore
ListTrialComponentsRequest.Builder createdBefore(Instant createdBefore)
A filter that returns only components created before the specified time.
- Parameters:
createdBefore
- A filter that returns only components created before the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortBy
ListTrialComponentsRequest.Builder sortBy(String sortBy)
The property used to sort results. The default value is
CreationTime
.- Parameters:
sortBy
- The property used to sort results. The default value isCreationTime
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortTrialComponentsBy
,SortTrialComponentsBy
-
sortBy
ListTrialComponentsRequest.Builder sortBy(SortTrialComponentsBy sortBy)
The property used to sort results. The default value is
CreationTime
.- Parameters:
sortBy
- The property used to sort results. The default value isCreationTime
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortTrialComponentsBy
,SortTrialComponentsBy
-
sortOrder
ListTrialComponentsRequest.Builder sortOrder(String sortOrder)
The sort order. The default value is
Descending
.
-
sortOrder
ListTrialComponentsRequest.Builder sortOrder(SortOrder sortOrder)
The sort order. The default value is
Descending
.
-
maxResults
ListTrialComponentsRequest.Builder maxResults(Integer maxResults)
The maximum number of components to return in the response. The default value is 10.
- Parameters:
maxResults
- The maximum number of components to return in the response. The default value is 10.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListTrialComponentsRequest.Builder nextToken(String nextToken)
If the previous call to
ListTrialComponents
didn't return the full set of components, the call returns a token for getting the next set of components.- Parameters:
nextToken
- If the previous call toListTrialComponents
didn't return the full set of components, the call returns a token for getting the next set of components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListTrialComponentsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListTrialComponentsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-