Interface Logging.Builder

    • Method Detail

      • clusterLogging

        Logging.Builder clusterLogging​(Collection<LogSetup> clusterLogging)

        The cluster control plane logging configuration for your cluster.

        Parameters:
        clusterLogging - The cluster control plane logging configuration for your cluster.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clusterLogging

        Logging.Builder clusterLogging​(LogSetup... clusterLogging)

        The cluster control plane logging configuration for your cluster.

        Parameters:
        clusterLogging - The cluster control plane logging configuration for your cluster.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clusterLogging

        Logging.Builder clusterLogging​(Consumer<LogSetup.Builder>... clusterLogging)

        The cluster control plane logging configuration for your cluster.

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

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

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