Interface ResetDbClusterParameterGroupRequest.Builder

    • Method Detail

      • dbClusterParameterGroupName

        ResetDbClusterParameterGroupRequest.Builder dbClusterParameterGroupName​(String dbClusterParameterGroupName)

        The name of the cluster parameter group to reset.

        Parameters:
        dbClusterParameterGroupName - The name of the 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)

        A value that is set to true to reset all parameters in the cluster parameter group to their default values, and false otherwise. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.

        Parameters:
        resetAllParameters - A value that is set to true to reset all parameters in the cluster parameter group to their default values, and false otherwise. 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 cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.

        Parameters:
        parameters - A list of parameter names in the cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.
        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 cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.

        Parameters:
        parameters - A list of parameter names in the cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.
        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 cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.

        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)