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)Specifies details of the Auto-Tune action.AutoTune.BuilderautoTuneDetails(AutoTuneDetails autoTuneDetails)Specifies details of the Auto-Tune action.AutoTune.BuilderautoTuneType(String autoTuneType)Specifies Auto-Tune type.AutoTune.BuilderautoTuneType(AutoTuneType autoTuneType)Specifies Auto-Tune type.-
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)
Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION.
- Parameters:
autoTuneType- Specifies Auto-Tune type. Valid value is SCHEDULED_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)
Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION.
- Parameters:
autoTuneType- Specifies Auto-Tune type. Valid value is SCHEDULED_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)
Specifies details of the Auto-Tune action. See the Developer Guide for more information.
- Parameters:
autoTuneDetails- Specifies details of the Auto-Tune action. See the Developer Guide for more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoTuneDetails
default AutoTune.Builder autoTuneDetails(Consumer<AutoTuneDetails.Builder> autoTuneDetails)
Specifies details of the Auto-Tune action. See the Developer Guide for more information.
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)
-
-