Class CfnCrawlerPropsMixin.DeltaTargetProperty
Specifies a Delta data store to crawl one or more Delta tables.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCrawlerPropsMixin.DeltaTargetProperty : CfnCrawlerPropsMixin.IDeltaTargetProperty
Syntax (vb)
Public Class CfnCrawlerPropsMixin.DeltaTargetProperty Implements CfnCrawlerPropsMixin.IDeltaTargetProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins;
var deltaTargetProperty = new DeltaTargetProperty {
ConnectionName = "connectionName",
CreateNativeDeltaTable = false,
DeltaTables = new [] { "deltaTables" },
WriteManifest = false
};
Synopsis
Constructors
| DeltaTargetProperty() | Specifies a Delta data store to crawl one or more Delta tables. |
Properties
| ConnectionName | The name of the connection to use to connect to the Delta table target. |
| CreateNativeDeltaTable | Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly. |
| DeltaTables | A list of the Amazon S3 paths to the Delta tables. |
| WriteManifest | Specifies whether to write the manifest files to the Delta table path. |
Constructors
DeltaTargetProperty()
Specifies a Delta data store to crawl one or more Delta tables.
public DeltaTargetProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins;
var deltaTargetProperty = new DeltaTargetProperty {
ConnectionName = "connectionName",
CreateNativeDeltaTable = false,
DeltaTables = new [] { "deltaTables" },
WriteManifest = false
};
Properties
ConnectionName
The name of the connection to use to connect to the Delta table target.
public string? ConnectionName { get; set; }
Property Value
Remarks
CreateNativeDeltaTable
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
public object? CreateNativeDeltaTable { get; set; }
Property Value
Remarks
DeltaTables
A list of the Amazon S3 paths to the Delta tables.
public string[]? DeltaTables { get; set; }
Property Value
string[]
Remarks
WriteManifest
Specifies whether to write the manifest files to the Delta table path.
public object? WriteManifest { get; set; }