Interface EngineDefaults.Builder

    • Method Detail

      • dbParameterGroupFamily

        EngineDefaults.Builder dbParameterGroupFamily​(String dbParameterGroupFamily)

        The name of the cluster parameter group family to return the engine parameter information for.

        Parameters:
        dbParameterGroupFamily - The name of the cluster parameter group family to return the engine parameter information for.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • marker

        EngineDefaults.Builder marker​(String marker)

        An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

        Parameters:
        marker - An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

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

        The parameters of a particular cluster parameter group family.

        Parameters:
        parameters - The parameters of a particular cluster parameter group family.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

        EngineDefaults.Builder parameters​(Parameter... parameters)

        The parameters of a particular cluster parameter group family.

        Parameters:
        parameters - The parameters of a particular cluster parameter group family.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • parameters

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

        The parameters of a particular cluster parameter group family.

        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)