Interface UpdateAppResponse.Builder

    • Method Detail

      • appSummary

        UpdateAppResponse.Builder appSummary​(AppSummary appSummary)

        A summary description of the application.

        Parameters:
        appSummary - A summary description of the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • serverGroups

        UpdateAppResponse.Builder serverGroups​(Collection<ServerGroup> serverGroups)

        The updated server groups in the application.

        Parameters:
        serverGroups - The updated server groups in the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • serverGroups

        UpdateAppResponse.Builder serverGroups​(ServerGroup... serverGroups)

        The updated server groups in the application.

        Parameters:
        serverGroups - The updated server groups in the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        The tags associated with the application.

        Parameters:
        tags - The tags associated with the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        UpdateAppResponse.Builder tags​(Tag... tags)

        The tags associated with the application.

        Parameters:
        tags - The tags associated with the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        The tags associated with the application.

        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)