Interface ResetDbClusterParameterGroupRequest.Builder

    • Method Detail

      • dbClusterParameterGroupName

        ResetDbClusterParameterGroupRequest.Builder dbClusterParameterGroupName​(String dbClusterParameterGroupName)

        The name of the DB cluster parameter group to reset.

        Parameters:
        dbClusterParameterGroupName - The name of the DB cluster parameter group to reset.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • resetAllParameters

        ResetDbClusterParameterGroupRequest.Builder resetAllParameters​(Boolean resetAllParameters)

        Specifies whether to reset all parameters in the DB cluster parameter group to their default values. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.

        Parameters:
        resetAllParameters - Specifies whether to reset all parameters in the DB cluster parameter group to their default values. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

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

        A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.

        Parameters:
        parameters - A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

        ResetDbClusterParameterGroupRequest.Builder parameters​(Parameter... parameters)

        A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.

        Parameters:
        parameters - A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

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

        A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.

        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)