Interface ExperimentConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ExperimentConfig.Builder,ExperimentConfig>
,SdkBuilder<ExperimentConfig.Builder,ExperimentConfig>
,SdkPojo
- Enclosing class:
- ExperimentConfig
public static interface ExperimentConfig.Builder extends SdkPojo, CopyableBuilder<ExperimentConfig.Builder,ExperimentConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExperimentConfig.Builder
experimentName(String experimentName)
The name of an existing experiment to associate with the trial component.ExperimentConfig.Builder
runName(String runName)
The name of the experiment run to associate with the trial component.ExperimentConfig.Builder
trialComponentDisplayName(String trialComponentDisplayName)
The display name for the trial component.ExperimentConfig.Builder
trialName(String trialName)
The name of an existing trial to associate the trial component with.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
ExperimentConfig.Builder experimentName(String experimentName)
The name of an existing experiment to associate with the trial component.
- Parameters:
experimentName
- The name of an existing experiment to associate with the trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trialName
ExperimentConfig.Builder trialName(String trialName)
The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
- Parameters:
trialName
- The name of an existing trial to associate the trial component with. If not specified, a new trial is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trialComponentDisplayName
ExperimentConfig.Builder trialComponentDisplayName(String trialComponentDisplayName)
The display name for the trial component. If this key isn't specified, the display name is the trial component name.
- Parameters:
trialComponentDisplayName
- The display name for the trial component. If this key isn't specified, the display name is the trial component name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runName
ExperimentConfig.Builder runName(String runName)
The name of the experiment run to associate with the trial component.
- Parameters:
runName
- The name of the experiment run to associate with the trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-