Interface ModifyDbClusterParameterGroupRequest.Builder

    • 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 the pending-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 is pending-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 the pending-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 is pending-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 the pending-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 is pending-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 the pending-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 is pending-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 the pending-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 is pending-reboot, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.

        This is a convenience method that creates an instance of the Parameter.Builder avoiding the need to create one manually via Parameter.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 on Parameter.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #parameters(java.util.Collection)