Interface Tagging.Builder

    • Method Detail

      • tagSet

        Tagging.Builder tagSet​(Collection<S3Tag> tagSet)

        A collection for a set of tags.

        Parameters:
        tagSet - A collection for a set of tags.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tagSet

        Tagging.Builder tagSet​(S3Tag... tagSet)

        A collection for a set of tags.

        Parameters:
        tagSet - A collection for a set of tags.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tagSet

        Tagging.Builder tagSet​(Consumer<S3Tag.Builder>... tagSet)

        A collection for a set of tags.

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

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

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