Interface ModifyDbClusterParameterGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ModifyDbClusterParameterGroupRequest.Builder,ModifyDbClusterParameterGroupRequest>
,RdsRequest.Builder
,SdkBuilder<ModifyDbClusterParameterGroupRequest.Builder,ModifyDbClusterParameterGroupRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ModifyDbClusterParameterGroupRequest
public static interface ModifyDbClusterParameterGroupRequest.Builder extends RdsRequest.Builder, SdkPojo, CopyableBuilder<ModifyDbClusterParameterGroupRequest.Builder,ModifyDbClusterParameterGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModifyDbClusterParameterGroupRequest.Builder
dbClusterParameterGroupName(String dbClusterParameterGroupName)
The name of the DB cluster parameter group to modify.ModifyDbClusterParameterGroupRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ModifyDbClusterParameterGroupRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ModifyDbClusterParameterGroupRequest.Builder
parameters(Collection<Parameter> parameters)
A list of parameters in the DB cluster parameter group to modify.ModifyDbClusterParameterGroupRequest.Builder
parameters(Consumer<Parameter.Builder>... parameters)
A list of parameters in the DB cluster parameter group to modify.ModifyDbClusterParameterGroupRequest.Builder
parameters(Parameter... parameters)
A list of parameters in the DB cluster parameter group to modify.-
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.rds.model.RdsRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
dbClusterParameterGroupName
ModifyDbClusterParameterGroupRequest.Builder dbClusterParameterGroupName(String dbClusterParameterGroupName)
The name of the DB cluster parameter group to modify.
- Parameters:
dbClusterParameterGroupName
- The name of the DB cluster parameter group to modify.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
ModifyDbClusterParameterGroupRequest.Builder parameters(Collection<Parameter> parameters)
A list of parameters in the DB cluster parameter group to modify.
Valid Values (for the application method):
immediate | pending-reboot
You can use the
immediate
value with dynamic parameters only. You can use thepending-reboot
value for both dynamic and static parameters.When the application method is
immediate
, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method ispending-reboot
, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.- Parameters:
parameters
- A list of parameters in the DB cluster parameter group to modify.Valid Values (for the application method):
immediate | pending-reboot
You can use the
immediate
value with dynamic parameters only. You can use thepending-reboot
value for both dynamic and static parameters.When the application method is
immediate
, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method ispending-reboot
, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
ModifyDbClusterParameterGroupRequest.Builder parameters(Parameter... parameters)
A list of parameters in the DB cluster parameter group to modify.
Valid Values (for the application method):
immediate | pending-reboot
You can use the
immediate
value with dynamic parameters only. You can use thepending-reboot
value for both dynamic and static parameters.When the application method is
immediate
, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method ispending-reboot
, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.- Parameters:
parameters
- A list of parameters in the DB cluster parameter group to modify.Valid Values (for the application method):
immediate | pending-reboot
You can use the
immediate
value with dynamic parameters only. You can use thepending-reboot
value for both dynamic and static parameters.When the application method is
immediate
, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method ispending-reboot
, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
ModifyDbClusterParameterGroupRequest.Builder parameters(Consumer<Parameter.Builder>... parameters)
A list of parameters in the DB cluster parameter group to modify.
Valid Values (for the application method):
immediate | pending-reboot
You can use the
immediate
value with dynamic parameters only. You can use thepending-reboot
value for both dynamic and static parameters.When the application method is
immediate
, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method ispending-reboot
, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.Parameter.Builder
avoiding the need to create one manually viaParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#parameters(List
.) - Parameters:
parameters
- a consumer that will call methods onParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameters(java.util.Collection
)
-
overrideConfiguration
ModifyDbClusterParameterGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ModifyDbClusterParameterGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-