Interface CreateAppResponse.Builder

    • Method Detail

      • appSummary

        CreateAppResponse.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

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

        The server groups included in the application.

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

        CreateAppResponse.Builder serverGroups​(ServerGroup... serverGroups)

        The server groups included in the application.

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

        CreateAppResponse.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

        CreateAppResponse.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

        CreateAppResponse.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)