Interface ListAppsResponse.Builder

    • Method Detail

      • apps

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

        A list of Amplify apps.

        Parameters:
        apps - A list of Amplify apps.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • apps

        ListAppsResponse.Builder apps​(App... apps)

        A list of Amplify apps.

        Parameters:
        apps - A list of Amplify apps.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • apps

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

        A list of Amplify 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)
      • nextToken

        ListAppsResponse.Builder nextToken​(String nextToken)

        A pagination token. Set to null to start listing apps from start. If non-null, the pagination token is returned in a result. Pass its value in here to list more projects.

        Parameters:
        nextToken - A pagination token. Set to null to start listing apps from start. If non-null, the pagination token is returned in a result. Pass its value in here to list more projects.
        Returns:
        Returns a reference to this object so that method calls can be chained together.