Show / Hide Table of Contents

Class CfnCrawlerPropsMixin.DeltaTargetProperty

Specifies a Delta data store to crawl one or more Delta tables.

Inheritance
object
CfnCrawlerPropsMixin.DeltaTargetProperty
Implements
CfnCrawlerPropsMixin.IDeltaTargetProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html#cfn-glue-crawler-deltatarget-connectionname

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html#cfn-glue-crawler-deltatarget-createnativedeltatable

Type union: either bool or IResolvable

DeltaTables

A list of the Amazon S3 paths to the Delta tables.

public string[]? DeltaTables { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html#cfn-glue-crawler-deltatarget-deltatables

WriteManifest

Specifies whether to write the manifest files to the Delta table path.

public object? WriteManifest { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html#cfn-glue-crawler-deltatarget-writemanifest

Type union: either bool or IResolvable

Implements

CfnCrawlerPropsMixin.IDeltaTargetProperty
Back to top Generated by DocFX