Interface NodegroupHealth.Builder

    • Method Detail

      • issues

        NodegroupHealth.Builder issues​(Collection<Issue> issues)

        Any issues that are associated with the node group.

        Parameters:
        issues - Any issues that are associated with the node group.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • issues

        NodegroupHealth.Builder issues​(Issue... issues)

        Any issues that are associated with the node group.

        Parameters:
        issues - Any issues that are associated with the node group.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • issues

        NodegroupHealth.Builder issues​(Consumer<Issue.Builder>... issues)

        Any issues that are associated with the node group.

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

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

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