Interface ListWebAppsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListWebAppsResponse.Builder,ListWebAppsResponse>,SdkBuilder<ListWebAppsResponse.Builder,ListWebAppsResponse>,SdkPojo,SdkResponse.Builder,TransferResponse.Builder
- Enclosing class:
- ListWebAppsResponse
public static interface ListWebAppsResponse.Builder extends TransferResponse.Builder, SdkPojo, CopyableBuilder<ListWebAppsResponse.Builder,ListWebAppsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListWebAppsResponse.BuildernextToken(String nextToken)Provide this value for theNextTokenparameter in a subsequent command to continue listing additional web apps.ListWebAppsResponse.BuilderwebApps(Collection<ListedWebApp> webApps)Returns, for each listed web app, a structure that contains details for the web app.ListWebAppsResponse.BuilderwebApps(Consumer<ListedWebApp.Builder>... webApps)Returns, for each listed web app, a structure that contains details for the web app.ListWebAppsResponse.BuilderwebApps(ListedWebApp... webApps)Returns, for each listed web app, a structure that contains details for the web app.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.transfer.model.TransferResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextToken
ListWebAppsResponse.Builder nextToken(String nextToken)
Provide this value for the
NextTokenparameter in a subsequent command to continue listing additional web apps.- Parameters:
nextToken- Provide this value for theNextTokenparameter in a subsequent command to continue listing additional web apps.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webApps
ListWebAppsResponse.Builder webApps(Collection<ListedWebApp> webApps)
Returns, for each listed web app, a structure that contains details for the web app.
- Parameters:
webApps- Returns, for each listed web app, a structure that contains details for the web app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webApps
ListWebAppsResponse.Builder webApps(ListedWebApp... webApps)
Returns, for each listed web app, a structure that contains details for the web app.
- Parameters:
webApps- Returns, for each listed web app, a structure that contains details for the web app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webApps
ListWebAppsResponse.Builder webApps(Consumer<ListedWebApp.Builder>... webApps)
Returns, for each listed web app, a structure that contains details for the web app.
This is a convenience method that creates an instance of theListedWebApp.Builderavoiding the need to create one manually viaListedWebApp.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#webApps(List.) - Parameters:
webApps- a consumer that will call methods onListedWebApp.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#webApps(java.util.Collection)
-
-