Interface GetConnectionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetConnectionsResponse.Builder,GetConnectionsResponse>,GlueResponse.Builder,SdkBuilder<GetConnectionsResponse.Builder,GetConnectionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetConnectionsResponse
public static interface GetConnectionsResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetConnectionsResponse.Builder,GetConnectionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetConnectionsResponse.BuilderconnectionList(Collection<Connection> connectionList)A list of requested connection definitions.GetConnectionsResponse.BuilderconnectionList(Consumer<Connection.Builder>... connectionList)A list of requested connection definitions.GetConnectionsResponse.BuilderconnectionList(Connection... connectionList)A list of requested connection definitions.GetConnectionsResponse.BuildernextToken(String nextToken)A continuation token, if the list of connections returned does not include the last of the filtered connections.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
connectionList
GetConnectionsResponse.Builder connectionList(Collection<Connection> connectionList)
A list of requested connection definitions.
- Parameters:
connectionList- A list of requested connection definitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionList
GetConnectionsResponse.Builder connectionList(Connection... connectionList)
A list of requested connection definitions.
- Parameters:
connectionList- A list of requested connection definitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionList
GetConnectionsResponse.Builder connectionList(Consumer<Connection.Builder>... connectionList)
A list of requested connection definitions.
This is a convenience method that creates an instance of theConnection.Builderavoiding the need to create one manually viaConnection.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#connectionList(List.) - Parameters:
connectionList- a consumer that will call methods onConnection.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#connectionList(java.util.Collection)
-
nextToken
GetConnectionsResponse.Builder nextToken(String nextToken)
A continuation token, if the list of connections returned does not include the last of the filtered connections.
- Parameters:
nextToken- A continuation token, if the list of connections returned does not include the last of the filtered connections.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-