Interface CfnCrawler.DeltaTargetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCrawler.DeltaTargetProperty.Jsii$Proxy
- Enclosing class:
CfnCrawler
@Stability(Stable)
public static interface CfnCrawler.DeltaTargetProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a Delta data store to crawl one or more Delta tables.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.*; DeltaTargetProperty deltaTargetProperty = DeltaTargetProperty.builder() .connectionName("connectionName") .createNativeDeltaTable(false) .deltaTables(List.of("deltaTables")) .writeManifest(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCrawler.DeltaTargetProperty
static final class
An implementation forCfnCrawler.DeltaTargetProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the connection to use to connect to the Delta table target.default Object
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.A list of the Amazon S3 paths to the Delta tables.default Object
Specifies whether to write the manifest files to the Delta table path.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionName
The name of the connection to use to connect to the Delta table target.- See Also:
-
getCreateNativeDeltaTable
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.- See Also:
-
getDeltaTables
A list of the Amazon S3 paths to the Delta tables.- See Also:
-
getWriteManifest
Specifies whether to write the manifest files to the Delta table path.- See Also:
-
builder
-