Interface ResetDbParameterGroupRequest.Builder

    • Method Detail

      • dbParameterGroupName

        ResetDbParameterGroupRequest.Builder dbParameterGroupName​(String dbParameterGroupName)

        The name of the DB parameter group.

        Constraints:

        • Must match the name of an existing DBParameterGroup.

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

        Constraints:

        • Must match the name of an existing DBParameterGroup.

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

        ResetDbParameterGroupRequest.Builder resetAllParameters​(Boolean resetAllParameters)

        Specifies whether (true) or not (false) to reset all parameters in the DB parameter group to default values.

        Default: true

        Parameters:
        resetAllParameters - Specifies whether (true) or not (false) to reset all parameters in the DB parameter group to default values.

        Default: true

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

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

        To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

        Valid Values (for Apply method): pending-reboot

        Parameters:
        parameters - To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

        Valid Values (for Apply method): pending-reboot

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

        ResetDbParameterGroupRequest.Builder parameters​(Parameter... parameters)

        To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

        Valid Values (for Apply method): pending-reboot

        Parameters:
        parameters - To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

        Valid Values (for Apply method): pending-reboot

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

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

        To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

        Valid Values (for Apply method): pending-reboot

        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)