interface DeltaTargetProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnCrawler.DeltaTargetProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCrawler_DeltaTargetProperty |
![]() | software.amazon.awscdk.services.glue.CfnCrawler.DeltaTargetProperty |
![]() | aws_cdk.aws_glue.CfnCrawler.DeltaTargetProperty |
![]() | aws-cdk-lib » aws_glue » CfnCrawler » DeltaTargetProperty |
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 { aws_glue as glue } from 'aws-cdk-lib';
const deltaTargetProperty: glue.CfnCrawler.DeltaTargetProperty = {
connectionName: 'connectionName',
createNativeDeltaTable: false,
deltaTables: ['deltaTables'],
writeManifest: false,
};
Properties
Name | Type | Description |
---|---|---|
connection | string | The name of the connection to use to connect to the Delta table target. |
create | boolean | IResolvable | Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly. |
delta | string[] | A list of the Amazon S3 paths to the Delta tables. |
write | boolean | IResolvable | Specifies whether to write the manifest files to the Delta table path. |
connectionName?
Type:
string
(optional)
The name of the connection to use to connect to the Delta table target.
createNativeDeltaTable?
Type:
boolean |
IResolvable
(optional)
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
deltaTables?
Type:
string[]
(optional)
A list of the Amazon S3 paths to the Delta tables.
writeManifest?
Type:
boolean |
IResolvable
(optional)
Specifies whether to write the manifest files to the Delta table path.