aws-cdk-lib.aws_glue.CfnCrawler.DeltaTargetProperty

interface DeltaTargetProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnCrawler.DeltaTargetProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCrawler_DeltaTargetProperty
Javasoftware.amazon.awscdk.services.glue.CfnCrawler.DeltaTargetProperty
Pythonaws_cdk.aws_glue.CfnCrawler.DeltaTargetProperty
TypeScript 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

NameTypeDescription
connectionName?stringThe name of the connection to use to connect to the Delta table target.
createNativeDeltaTable?boolean | IResolvableSpecifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
deltaTables?string[]A list of the Amazon S3 paths to the Delta tables.
writeManifest?boolean | IResolvableSpecifies 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.