Interface ListAppsResponse.Builder
-
- All Superinterfaces:
AmplifyResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListAppsResponse.Builder,ListAppsResponse>,SdkBuilder<ListAppsResponse.Builder,ListAppsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAppsResponse
public static interface ListAppsResponse.Builder extends AmplifyResponse.Builder, SdkPojo, CopyableBuilder<ListAppsResponse.Builder,ListAppsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAppsResponse.Builderapps(Collection<App> apps)A list of Amplify apps.ListAppsResponse.Builderapps(Consumer<App.Builder>... apps)A list of Amplify apps.ListAppsResponse.Builderapps(App... apps)A list of Amplify apps.ListAppsResponse.BuildernextToken(String nextToken)A pagination token.-
Methods inherited from interface software.amazon.awssdk.services.amplify.model.AmplifyResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
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 theApp.Builderavoiding the need to create one manually viaApp.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#apps(List.) - Parameters:
apps- a consumer that will call methods onApp.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.
-
-