Interface AutoTune.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoTune.Builder,AutoTune>,SdkBuilder<AutoTune.Builder,AutoTune>,SdkPojo
- Enclosing class:
- AutoTune
public static interface AutoTune.Builder extends SdkPojo, CopyableBuilder<AutoTune.Builder,AutoTune>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AutoTune.BuilderautoTuneDetails(Consumer<AutoTuneDetails.Builder> autoTuneDetails)Details about an Auto-Tune action.AutoTune.BuilderautoTuneDetails(AutoTuneDetails autoTuneDetails)Details about an Auto-Tune action.AutoTune.BuilderautoTuneType(String autoTuneType)The type of Auto-Tune action.AutoTune.BuilderautoTuneType(AutoTuneType autoTuneType)The type of Auto-Tune action.-
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
-
autoTuneType
AutoTune.Builder autoTuneType(String autoTuneType)
The type of Auto-Tune action.
- Parameters:
autoTuneType- The type of Auto-Tune action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoTuneType,AutoTuneType
-
autoTuneType
AutoTune.Builder autoTuneType(AutoTuneType autoTuneType)
The type of Auto-Tune action.
- Parameters:
autoTuneType- The type of Auto-Tune action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoTuneType,AutoTuneType
-
autoTuneDetails
AutoTune.Builder autoTuneDetails(AutoTuneDetails autoTuneDetails)
Details about an Auto-Tune action.
- Parameters:
autoTuneDetails- Details about an Auto-Tune action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoTuneDetails
default AutoTune.Builder autoTuneDetails(Consumer<AutoTuneDetails.Builder> autoTuneDetails)
Details about an Auto-Tune action.
This is a convenience method that creates an instance of theAutoTuneDetails.Builderavoiding the need to create one manually viaAutoTuneDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toautoTuneDetails(AutoTuneDetails).- Parameters:
autoTuneDetails- a consumer that will call methods onAutoTuneDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
autoTuneDetails(AutoTuneDetails)
-
-