Interface CreateExperimentRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateExperimentRequest.Builder,CreateExperimentRequest>
,SageMakerRequest.Builder
,SdkBuilder<CreateExperimentRequest.Builder,CreateExperimentRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateExperimentRequest
public static interface CreateExperimentRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<CreateExperimentRequest.Builder,CreateExperimentRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateExperimentRequest.Builder
description(String description)
The description of the experiment.CreateExperimentRequest.Builder
displayName(String displayName)
The name of the experiment as displayed.CreateExperimentRequest.Builder
experimentName(String experimentName)
The name of the experiment.CreateExperimentRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateExperimentRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateExperimentRequest.Builder
tags(Collection<Tag> tags)
A list of tags to associate with the experiment.CreateExperimentRequest.Builder
tags(Consumer<Tag.Builder>... tags)
A list of tags to associate with the experiment.CreateExperimentRequest.Builder
tags(Tag... tags)
A list of tags to associate with the experiment.-
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
CreateExperimentRequest.Builder experimentName(String experimentName)
The name of the experiment. The name must be unique in your Amazon Web Services account and is not case-sensitive.
- Parameters:
experimentName
- The name of the experiment. The name must be unique in your Amazon Web Services account and is not case-sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
CreateExperimentRequest.Builder displayName(String displayName)
The name of the experiment as displayed. The name doesn't need to be unique. If you don't specify
DisplayName
, the value inExperimentName
is displayed.- Parameters:
displayName
- The name of the experiment as displayed. The name doesn't need to be unique. If you don't specifyDisplayName
, the value inExperimentName
is displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateExperimentRequest.Builder description(String description)
The description of the experiment.
- Parameters:
description
- The description of the experiment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateExperimentRequest.Builder tags(Collection<Tag> tags)
A list of tags to associate with the experiment. You can use Search API to search on the tags.
- Parameters:
tags
- A list of tags to associate with the experiment. You can use Search API to search on the tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateExperimentRequest.Builder tags(Tag... tags)
A list of tags to associate with the experiment. You can use Search API to search on the tags.
- Parameters:
tags
- A list of tags to associate with the experiment. You can use Search API to search on the tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateExperimentRequest.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags to associate with the experiment. You can use Search API to search on the tags.
This is a convenience method that creates an instance of theTag.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#tags(List
.) - Parameters:
tags
- a consumer that will call methods onTag.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection
)
-
overrideConfiguration
CreateExperimentRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateExperimentRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-