Show / Hide Table of Contents

Class CfnCrawlerPropsMixin.IcebergTargetProperty

Specifies Apache Iceberg data store targets.

Inheritance
object
CfnCrawlerPropsMixin.IcebergTargetProperty
Implements
CfnCrawlerPropsMixin.IIcebergTargetProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCrawlerPropsMixin.IcebergTargetProperty : CfnCrawlerPropsMixin.IIcebergTargetProperty
Syntax (vb)
Public Class CfnCrawlerPropsMixin.IcebergTargetProperty Implements CfnCrawlerPropsMixin.IIcebergTargetProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.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.CfnPropertyMixins.AWS.Glue;

             var icebergTargetProperty = new IcebergTargetProperty {
                 ConnectionName = "connectionName",
                 Exclusions = new [] { "exclusions" },
                 MaximumTraversalDepth = 123,
                 Paths = new [] { "paths" }
             };

Synopsis

Constructors

IcebergTargetProperty()

Specifies Apache Iceberg data store targets.

Properties

ConnectionName

The name of the connection to use to connect to the Iceberg target.

Exclusions

A list of global patterns used to exclude from the crawl.

MaximumTraversalDepth

The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path.

Paths

One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .

Constructors

IcebergTargetProperty()

Specifies Apache Iceberg data store targets.

public IcebergTargetProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.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.CfnPropertyMixins.AWS.Glue;

             var icebergTargetProperty = new IcebergTargetProperty {
                 ConnectionName = "connectionName",
                 Exclusions = new [] { "exclusions" },
                 MaximumTraversalDepth = 123,
                 Paths = new [] { "paths" }
             };

Properties

ConnectionName

The name of the connection to use to connect to the Iceberg target.

public string? ConnectionName { get; set; }
Property Value

string

Remarks

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

Exclusions

A list of global patterns used to exclude from the crawl.

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

string[]

Remarks

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

MaximumTraversalDepth

The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path.

public double? MaximumTraversalDepth { get; set; }
Property Value

double?

Remarks

Used to limit the crawler run time.

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

Paths

One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .

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

string[]

Remarks

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

Implements

CfnCrawlerPropsMixin.IIcebergTargetProperty
Back to top Generated by DocFX