Interface GetMappingRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<GetMappingRequest.Builder,
,GetMappingRequest> GlueRequest.Builder
,SdkBuilder<GetMappingRequest.Builder,
,GetMappingRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
GetMappingRequest
public static interface GetMappingRequest.Builder
extends GlueRequest.Builder, SdkPojo, CopyableBuilder<GetMappingRequest.Builder,GetMappingRequest>
-
Method Summary
Modifier and TypeMethodDescriptiondefault GetMappingRequest.Builder
location
(Consumer<Location.Builder> location) Parameters for the mapping.Parameters for the mapping.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.sinks
(Collection<CatalogEntry> sinks) A list of target tables.sinks
(Consumer<CatalogEntry.Builder>... sinks) A list of target tables.sinks
(CatalogEntry... sinks) A list of target tables.default GetMappingRequest.Builder
source
(Consumer<CatalogEntry.Builder> source) Specifies the source table.source
(CatalogEntry source) Specifies the source table.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, sdkFields
-
Method Details
-
source
Specifies the source table.
- Parameters:
source
- Specifies the source table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
Specifies the source table.
This is a convenience method that creates an instance of theCatalogEntry.Builder
avoiding the need to create one manually viaCatalogEntry.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosource(CatalogEntry)
.- Parameters:
source
- a consumer that will call methods onCatalogEntry.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
sinks
A list of target tables.
- Parameters:
sinks
- A list of target tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sinks
A list of target tables.
- Parameters:
sinks
- A list of target tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sinks
A list of target tables.
This is a convenience method that creates an instance of theCatalogEntry.Builder
avoiding the need to create one manually viaCatalogEntry.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosinks(List<CatalogEntry>)
.- Parameters:
sinks
- a consumer that will call methods onCatalogEntry.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
location
Parameters for the mapping.
- Parameters:
location
- Parameters for the mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
Parameters for the mapping.
This is a convenience method that creates an instance of theLocation.Builder
avoiding the need to create one manually viaLocation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tolocation(Location)
.- Parameters:
location
- a consumer that will call methods onLocation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
GetMappingRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
GetMappingRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-