Interface GetPlanRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<GetPlanRequest.Builder,GetPlanRequest>,GlueRequest.Builder,SdkBuilder<GetPlanRequest.Builder,GetPlanRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- GetPlanRequest
public static interface GetPlanRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<GetPlanRequest.Builder,GetPlanRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetPlanRequest.BuilderadditionalPlanOptionsMap(Map<String,String> additionalPlanOptionsMap)A map to hold additional optional key-value parameters.GetPlanRequest.Builderlanguage(String language)The programming language of the code to perform the mapping.GetPlanRequest.Builderlanguage(Language language)The programming language of the code to perform the mapping.default GetPlanRequest.Builderlocation(Consumer<Location.Builder> location)The parameters for the mapping.GetPlanRequest.Builderlocation(Location location)The parameters for the mapping.GetPlanRequest.Buildermapping(Collection<MappingEntry> mapping)The list of mappings from a source table to target tables.GetPlanRequest.Buildermapping(Consumer<MappingEntry.Builder>... mapping)The list of mappings from a source table to target tables.GetPlanRequest.Buildermapping(MappingEntry... mapping)The list of mappings from a source table to target tables.GetPlanRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)GetPlanRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)GetPlanRequest.Buildersinks(Collection<CatalogEntry> sinks)The target tables.GetPlanRequest.Buildersinks(Consumer<CatalogEntry.Builder>... sinks)The target tables.GetPlanRequest.Buildersinks(CatalogEntry... sinks)The target tables.default GetPlanRequest.Buildersource(Consumer<CatalogEntry.Builder> source)The source table.GetPlanRequest.Buildersource(CatalogEntry source)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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
mapping
GetPlanRequest.Builder mapping(Collection<MappingEntry> mapping)
The list of mappings from a source table to target tables.
- Parameters:
mapping- The list of mappings from a source table to target tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapping
GetPlanRequest.Builder mapping(MappingEntry... mapping)
The list of mappings from a source table to target tables.
- Parameters:
mapping- The list of mappings from a source table to target tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapping
GetPlanRequest.Builder mapping(Consumer<MappingEntry.Builder>... mapping)
The list of mappings from a source table to target tables.
This is a convenience method that creates an instance of theMappingEntry.Builderavoiding the need to create one manually viaMappingEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mapping(List.) - Parameters:
mapping- a consumer that will call methods onMappingEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mapping(java.util.Collection)
-
source
GetPlanRequest.Builder source(CatalogEntry source)
The source table.
- Parameters:
source- The source table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
default GetPlanRequest.Builder source(Consumer<CatalogEntry.Builder> source)
The source table.
This is a convenience method that creates an instance of theCatalogEntry.Builderavoiding the need to create one manually viaCatalogEntry.builder().When the
Consumercompletes,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:
source(CatalogEntry)
-
sinks
GetPlanRequest.Builder sinks(Collection<CatalogEntry> sinks)
The target tables.
- Parameters:
sinks- The target tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sinks
GetPlanRequest.Builder sinks(CatalogEntry... sinks)
The target tables.
- Parameters:
sinks- The target tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sinks
GetPlanRequest.Builder sinks(Consumer<CatalogEntry.Builder>... sinks)
The target tables.
This is a convenience method that creates an instance of theCatalogEntry.Builderavoiding the need to create one manually viaCatalogEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sinks(List.) - 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:
#sinks(java.util.Collection)
-
location
GetPlanRequest.Builder location(Location location)
The parameters for the mapping.
- Parameters:
location- The parameters for the mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
default GetPlanRequest.Builder location(Consumer<Location.Builder> location)
The parameters for the mapping.
This is a convenience method that creates an instance of theLocation.Builderavoiding the need to create one manually viaLocation.builder().When the
Consumercompletes,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:
location(Location)
-
language
GetPlanRequest.Builder language(String language)
The programming language of the code to perform the mapping.
-
language
GetPlanRequest.Builder language(Language language)
The programming language of the code to perform the mapping.
-
additionalPlanOptionsMap
GetPlanRequest.Builder additionalPlanOptionsMap(Map<String,String> additionalPlanOptionsMap)
A map to hold additional optional key-value parameters.
Currently, these key-value pairs are supported:
-
inferSchema— Specifies whether to setinferSchemato true or false for the default script generated by an Glue job. For example, to setinferSchemato true, pass the following key value pair:--additional-plan-options-map '{"inferSchema":"true"}'
- Parameters:
additionalPlanOptionsMap- A map to hold additional optional key-value parameters.Currently, these key-value pairs are supported:
-
inferSchema— Specifies whether to setinferSchemato true or false for the default script generated by an Glue job. For example, to setinferSchemato true, pass the following key value pair:--additional-plan-options-map '{"inferSchema":"true"}'
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
overrideConfiguration
GetPlanRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
GetPlanRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-