Interface ListConnectionsResponse.Builder
-
- All Superinterfaces:
AppRunnerResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListConnectionsResponse.Builder,ListConnectionsResponse>,SdkBuilder<ListConnectionsResponse.Builder,ListConnectionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListConnectionsResponse
public static interface ListConnectionsResponse.Builder extends AppRunnerResponse.Builder, SdkPojo, CopyableBuilder<ListConnectionsResponse.Builder,ListConnectionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConnectionsResponse.BuilderconnectionSummaryList(Collection<ConnectionSummary> connectionSummaryList)A list of summary information records for connections.ListConnectionsResponse.BuilderconnectionSummaryList(Consumer<ConnectionSummary.Builder>... connectionSummaryList)A list of summary information records for connections.ListConnectionsResponse.BuilderconnectionSummaryList(ConnectionSummary... connectionSummaryList)A list of summary information records for connections.ListConnectionsResponse.BuildernextToken(String nextToken)The token that you can pass in a subsequent request to get the next result page.-
Methods inherited from interface software.amazon.awssdk.services.apprunner.model.AppRunnerResponse.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
-
connectionSummaryList
ListConnectionsResponse.Builder connectionSummaryList(Collection<ConnectionSummary> connectionSummaryList)
A list of summary information records for connections. In a paginated request, the request returns up to
MaxResultsrecords for each call.- Parameters:
connectionSummaryList- A list of summary information records for connections. In a paginated request, the request returns up toMaxResultsrecords for each call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionSummaryList
ListConnectionsResponse.Builder connectionSummaryList(ConnectionSummary... connectionSummaryList)
A list of summary information records for connections. In a paginated request, the request returns up to
MaxResultsrecords for each call.- Parameters:
connectionSummaryList- A list of summary information records for connections. In a paginated request, the request returns up toMaxResultsrecords for each call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionSummaryList
ListConnectionsResponse.Builder connectionSummaryList(Consumer<ConnectionSummary.Builder>... connectionSummaryList)
A list of summary information records for connections. In a paginated request, the request returns up to
This is a convenience method that creates an instance of theMaxResultsrecords for each call.ConnectionSummary.Builderavoiding the need to create one manually viaConnectionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#connectionSummaryList(List.) - Parameters:
connectionSummaryList- a consumer that will call methods onConnectionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#connectionSummaryList(java.util.Collection)
-
nextToken
ListConnectionsResponse.Builder nextToken(String nextToken)
The token that you can pass in a subsequent request to get the next result page. Returned in a paginated request.
- Parameters:
nextToken- The token that you can pass in a subsequent request to get the next result page. Returned in a paginated request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-