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.Builderdescription(String description)The description of the experiment.CreateExperimentRequest.BuilderdisplayName(String displayName)The name of the experiment as displayed.CreateExperimentRequest.BuilderexperimentName(String experimentName)The name of the experiment.CreateExperimentRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateExperimentRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateExperimentRequest.Buildertags(Collection<Tag> tags)A list of tags to associate with the experiment.CreateExperimentRequest.Buildertags(Consumer<Tag.Builder>... tags)A list of tags to associate with the experiment.CreateExperimentRequest.Buildertags(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, sdkFieldNameToField, 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 inExperimentNameis 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 inExperimentNameis 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.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,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:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateExperimentRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-