Interface DescribeAppsResponse.Builder

    • Method Detail

      • apps

        DescribeAppsResponse.Builder apps​(Collection<App> apps)

        An array of App objects that describe the specified apps.

        Parameters:
        apps - An array of App objects that describe the specified apps.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • apps

        DescribeAppsResponse.Builder apps​(App... apps)

        An array of App objects that describe the specified apps.

        Parameters:
        apps - An array of App objects that describe the specified apps.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • apps

        DescribeAppsResponse.Builder apps​(Consumer<App.Builder>... apps)

        An array of App objects that describe the specified apps.

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

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

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