Interface ClusterParameterGroup.Builder

    • Method Detail

      • parameterGroupName

        ClusterParameterGroup.Builder parameterGroupName​(String parameterGroupName)

        The name of the cluster parameter group.

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

        ClusterParameterGroup.Builder parameterGroupFamily​(String parameterGroupFamily)

        The name of the cluster parameter group family that this cluster parameter group is compatible with.

        Parameters:
        parameterGroupFamily - The name of the cluster parameter group family that this cluster parameter group is compatible with.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        ClusterParameterGroup.Builder description​(String description)

        The description of the parameter group.

        Parameters:
        description - The description of the parameter group.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ClusterParameterGroup.Builder tags​(Collection<Tag> tags)

        The list of tags for the cluster parameter group.

        Parameters:
        tags - The list of tags for the cluster parameter group.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ClusterParameterGroup.Builder tags​(Tag... tags)

        The list of tags for the cluster parameter group.

        Parameters:
        tags - The list of tags for the cluster parameter group.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        ClusterParameterGroup.Builder tags​(Consumer<Tag.Builder>... tags)

        The list of tags for the cluster parameter group.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)