Interface JDBCConnectorOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<JDBCConnectorOptions.Builder,
,JDBCConnectorOptions> SdkBuilder<JDBCConnectorOptions.Builder,
,JDBCConnectorOptions> SdkPojo
- Enclosing class:
JDBCConnectorOptions
-
Method Summary
Modifier and TypeMethodDescriptiondataTypeMapping
(Map<JDBCDataType, GlueRecordType> dataTypeMapping) Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type.dataTypeMappingWithStrings
(Map<String, String> dataTypeMapping) Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type.filterPredicate
(String filterPredicate) Extra condition clause to filter data from source.jobBookmarkKeys
(String... jobBookmarkKeys) The name of the job bookmark keys on which to sort.jobBookmarkKeys
(Collection<String> jobBookmarkKeys) The name of the job bookmark keys on which to sort.jobBookmarkKeysSortOrder
(String jobBookmarkKeysSortOrder) Specifies an ascending or descending sort order.lowerBound
(Long lowerBound) The minimum value ofpartitionColumn
that is used to decide partition stride.numPartitions
(Long numPartitions) The number of partitions.partitionColumn
(String partitionColumn) The name of an integer column that is used for partitioning.upperBound
(Long upperBound) The maximum value ofpartitionColumn
that is used to decide partition stride.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
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
-
filterPredicate
Extra condition clause to filter data from source. For example:
BillingCity='Mountain View'
When using a query instead of a table name, you should validate that the query works with the specified
filterPredicate
.- Parameters:
filterPredicate
- Extra condition clause to filter data from source. For example:BillingCity='Mountain View'
When using a query instead of a table name, you should validate that the query works with the specified
filterPredicate
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionColumn
The name of an integer column that is used for partitioning. This option works only when it's included with
lowerBound
,upperBound
, andnumPartitions
. This option works the same way as in the Spark SQL JDBC reader.- Parameters:
partitionColumn
- The name of an integer column that is used for partitioning. This option works only when it's included withlowerBound
,upperBound
, andnumPartitions
. This option works the same way as in the Spark SQL JDBC reader.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lowerBound
The minimum value of
partitionColumn
that is used to decide partition stride.- Parameters:
lowerBound
- The minimum value ofpartitionColumn
that is used to decide partition stride.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
upperBound
The maximum value of
partitionColumn
that is used to decide partition stride.- Parameters:
upperBound
- The maximum value ofpartitionColumn
that is used to decide partition stride.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numPartitions
The number of partitions. This value, along with
lowerBound
(inclusive) andupperBound
(exclusive), form partition strides for generatedWHERE
clause expressions that are used to split thepartitionColumn
.- Parameters:
numPartitions
- The number of partitions. This value, along withlowerBound
(inclusive) andupperBound
(exclusive), form partition strides for generatedWHERE
clause expressions that are used to split thepartitionColumn
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobBookmarkKeys
The name of the job bookmark keys on which to sort.
- Parameters:
jobBookmarkKeys
- The name of the job bookmark keys on which to sort.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobBookmarkKeys
The name of the job bookmark keys on which to sort.
- Parameters:
jobBookmarkKeys
- The name of the job bookmark keys on which to sort.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobBookmarkKeysSortOrder
Specifies an ascending or descending sort order.
- Parameters:
jobBookmarkKeysSortOrder
- Specifies an ascending or descending sort order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataTypeMappingWithStrings
Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type. For example, the option
"dataTypeMapping":{"FLOAT":"STRING"}
maps data fields of JDBC typeFLOAT
into the JavaString
type by calling theResultSet.getString()
method of the driver, and uses it to build the Glue record. TheResultSet
object is implemented by each driver, so the behavior is specific to the driver you use. Refer to the documentation for your JDBC driver to understand how the driver performs the conversions.- Parameters:
dataTypeMapping
- Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type. For example, the option"dataTypeMapping":{"FLOAT":"STRING"}
maps data fields of JDBC typeFLOAT
into the JavaString
type by calling theResultSet.getString()
method of the driver, and uses it to build the Glue record. TheResultSet
object is implemented by each driver, so the behavior is specific to the driver you use. Refer to the documentation for your JDBC driver to understand how the driver performs the conversions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataTypeMapping
Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type. For example, the option
"dataTypeMapping":{"FLOAT":"STRING"}
maps data fields of JDBC typeFLOAT
into the JavaString
type by calling theResultSet.getString()
method of the driver, and uses it to build the Glue record. TheResultSet
object is implemented by each driver, so the behavior is specific to the driver you use. Refer to the documentation for your JDBC driver to understand how the driver performs the conversions.- Parameters:
dataTypeMapping
- Custom data type mapping that builds a mapping from a JDBC data type to an Glue data type. For example, the option"dataTypeMapping":{"FLOAT":"STRING"}
maps data fields of JDBC typeFLOAT
into the JavaString
type by calling theResultSet.getString()
method of the driver, and uses it to build the Glue record. TheResultSet
object is implemented by each driver, so the behavior is specific to the driver you use. Refer to the documentation for your JDBC driver to understand how the driver performs the conversions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-