Interface ListConnectionTypesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListConnectionTypesResponse.Builder,ListConnectionTypesResponse>,GlueResponse.Builder,SdkBuilder<ListConnectionTypesResponse.Builder,ListConnectionTypesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListConnectionTypesResponse
public static interface ListConnectionTypesResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<ListConnectionTypesResponse.Builder,ListConnectionTypesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConnectionTypesResponse.BuilderconnectionTypes(Collection<ConnectionTypeBrief> connectionTypes)A list ofConnectionTypeBriefobjects containing brief information about the supported connection types.ListConnectionTypesResponse.BuilderconnectionTypes(Consumer<ConnectionTypeBrief.Builder>... connectionTypes)A list ofConnectionTypeBriefobjects containing brief information about the supported connection types.ListConnectionTypesResponse.BuilderconnectionTypes(ConnectionTypeBrief... connectionTypes)A list ofConnectionTypeBriefobjects containing brief information about the supported connection types.ListConnectionTypesResponse.BuildernextToken(String nextToken)A continuation token, if the current list segment is not the last.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
connectionTypes
ListConnectionTypesResponse.Builder connectionTypes(Collection<ConnectionTypeBrief> connectionTypes)
A list of
ConnectionTypeBriefobjects containing brief information about the supported connection types.- Parameters:
connectionTypes- A list ofConnectionTypeBriefobjects containing brief information about the supported connection types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionTypes
ListConnectionTypesResponse.Builder connectionTypes(ConnectionTypeBrief... connectionTypes)
A list of
ConnectionTypeBriefobjects containing brief information about the supported connection types.- Parameters:
connectionTypes- A list ofConnectionTypeBriefobjects containing brief information about the supported connection types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionTypes
ListConnectionTypesResponse.Builder connectionTypes(Consumer<ConnectionTypeBrief.Builder>... connectionTypes)
A list of
This is a convenience method that creates an instance of theConnectionTypeBriefobjects containing brief information about the supported connection types.ConnectionTypeBrief.Builderavoiding the need to create one manually viaConnectionTypeBrief.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#connectionTypes(List.) - Parameters:
connectionTypes- a consumer that will call methods onConnectionTypeBrief.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#connectionTypes(java.util.Collection)
-
nextToken
ListConnectionTypesResponse.Builder nextToken(String nextToken)
A continuation token, if the current list segment is not the last.
- Parameters:
nextToken- A continuation token, if the current list segment is not the last.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-