Interface ModifyDbParameterGroupRequest.Builder

    • Method Detail

      • dbParameterGroupName

        ModifyDbParameterGroupRequest.Builder dbParameterGroupName​(String dbParameterGroupName)

        The name of the DB parameter group.

        Constraints:

        • If supplied, must match the name of an existing DBParameterGroup.

        Parameters:
        dbParameterGroupName - The name of the DB parameter group.

        Constraints:

        • If supplied, must match the name of an existing DBParameterGroup.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

        ModifyDbParameterGroupRequest.Builder parameters​(Collection<Parameter> parameters)

        An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters can be modified in a single request.

        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, and changes are applied when you reboot the DB instance without failover.

        Parameters:
        parameters - An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters can be modified in a single request.

        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, and changes are applied when you reboot the DB instance without failover.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

        ModifyDbParameterGroupRequest.Builder parameters​(Parameter... parameters)

        An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters can be modified in a single request.

        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, and changes are applied when you reboot the DB instance without failover.

        Parameters:
        parameters - An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters can be modified in a single request.

        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, and changes are applied when you reboot the DB instance without failover.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

        ModifyDbParameterGroupRequest.Builder parameters​(Consumer<Parameter.Builder>... parameters)

        An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters can be modified in a single request.

        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, and changes are applied when you reboot the DB instance without failover.

        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)