Interface ParameterSliderControl.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParameterSliderControl.Builder,ParameterSliderControl>,SdkBuilder<ParameterSliderControl.Builder,ParameterSliderControl>,SdkPojo
- Enclosing class:
- ParameterSliderControl
@Mutable @NotThreadSafe public static interface ParameterSliderControl.Builder extends SdkPojo, CopyableBuilder<ParameterSliderControl.Builder,ParameterSliderControl>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ParameterSliderControl.BuilderdisplayOptions(Consumer<SliderControlDisplayOptions.Builder> displayOptions)The display options of a control.ParameterSliderControl.BuilderdisplayOptions(SliderControlDisplayOptions displayOptions)The display options of a control.ParameterSliderControl.BuildermaximumValue(Double maximumValue)The larger value that is displayed at the right of the slider.ParameterSliderControl.BuilderminimumValue(Double minimumValue)The smaller value that is displayed at the left of the slider.ParameterSliderControl.BuilderparameterControlId(String parameterControlId)The ID of theParameterSliderControl.ParameterSliderControl.BuildersourceParameterName(String sourceParameterName)The source parameter name of theParameterSliderControl.ParameterSliderControl.BuilderstepSize(Double stepSize)The number of increments that the slider bar is divided into.ParameterSliderControl.Buildertitle(String title)The title of theParameterSliderControl.-
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
-
parameterControlId
ParameterSliderControl.Builder parameterControlId(String parameterControlId)
The ID of the
ParameterSliderControl.- Parameters:
parameterControlId- The ID of theParameterSliderControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
ParameterSliderControl.Builder title(String title)
The title of the
ParameterSliderControl.- Parameters:
title- The title of theParameterSliderControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceParameterName
ParameterSliderControl.Builder sourceParameterName(String sourceParameterName)
The source parameter name of the
ParameterSliderControl.- Parameters:
sourceParameterName- The source parameter name of theParameterSliderControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
ParameterSliderControl.Builder displayOptions(SliderControlDisplayOptions displayOptions)
The display options of a control.
- Parameters:
displayOptions- The display options of a control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
default ParameterSliderControl.Builder displayOptions(Consumer<SliderControlDisplayOptions.Builder> displayOptions)
The display options of a control.
This is a convenience method that creates an instance of theSliderControlDisplayOptions.Builderavoiding the need to create one manually viaSliderControlDisplayOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayOptions(SliderControlDisplayOptions).- Parameters:
displayOptions- a consumer that will call methods onSliderControlDisplayOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayOptions(SliderControlDisplayOptions)
-
maximumValue
ParameterSliderControl.Builder maximumValue(Double maximumValue)
The larger value that is displayed at the right of the slider.
- Parameters:
maximumValue- The larger value that is displayed at the right of the slider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimumValue
ParameterSliderControl.Builder minimumValue(Double minimumValue)
The smaller value that is displayed at the left of the slider.
- Parameters:
minimumValue- The smaller value that is displayed at the left of the slider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepSize
ParameterSliderControl.Builder stepSize(Double stepSize)
The number of increments that the slider bar is divided into.
- Parameters:
stepSize- The number of increments that the slider bar is divided into.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-