Interface UpdateConnectionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateConnectionRequest.Builder,UpdateConnectionRequest>,GlueRequest.Builder,SdkBuilder<UpdateConnectionRequest.Builder,UpdateConnectionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateConnectionRequest
public static interface UpdateConnectionRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<UpdateConnectionRequest.Builder,UpdateConnectionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateConnectionRequest.BuildercatalogId(String catalogId)The ID of the Data Catalog in which the connection resides.default UpdateConnectionRequest.BuilderconnectionInput(Consumer<ConnectionInput.Builder> connectionInput)AConnectionInputobject that redefines the connection in question.UpdateConnectionRequest.BuilderconnectionInput(ConnectionInput connectionInput)AConnectionInputobject that redefines the connection in question.UpdateConnectionRequest.Buildername(String name)The name of the connection definition to update.UpdateConnectionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateConnectionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
catalogId
UpdateConnectionRequest.Builder catalogId(String catalogId)
The ID of the Data Catalog in which the connection resides. If none is provided, the Amazon Web Services account ID is used by default.
- Parameters:
catalogId- The ID of the Data Catalog in which the connection resides. If none is provided, the Amazon Web Services account ID is used by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateConnectionRequest.Builder name(String name)
The name of the connection definition to update.
- Parameters:
name- The name of the connection definition to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionInput
UpdateConnectionRequest.Builder connectionInput(ConnectionInput connectionInput)
A
ConnectionInputobject that redefines the connection in question.- Parameters:
connectionInput- AConnectionInputobject that redefines the connection in question.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionInput
default UpdateConnectionRequest.Builder connectionInput(Consumer<ConnectionInput.Builder> connectionInput)
A
This is a convenience method that creates an instance of theConnectionInputobject that redefines the connection in question.ConnectionInput.Builderavoiding the need to create one manually viaConnectionInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toconnectionInput(ConnectionInput).- Parameters:
connectionInput- a consumer that will call methods onConnectionInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
connectionInput(ConnectionInput)
-
overrideConfiguration
UpdateConnectionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateConnectionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-