Show / Hide Table of Contents

Class CfnCrawler.LakeFormationConfigurationProperty

Specifies AWS Lake Formation configuration settings for the crawler.

Inheritance
object
CfnCrawler.LakeFormationConfigurationProperty
Implements
CfnCrawler.ILakeFormationConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCrawler.LakeFormationConfigurationProperty : CfnCrawler.ILakeFormationConfigurationProperty
Syntax (vb)
Public Class CfnCrawler.LakeFormationConfigurationProperty Implements CfnCrawler.ILakeFormationConfigurationProperty
Remarks

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

             var lakeFormationConfigurationProperty = new LakeFormationConfigurationProperty {
                 AccountId = "accountId",
                 UseLakeFormationCredentials = false
             };

Synopsis

Constructors

LakeFormationConfigurationProperty()

Specifies AWS Lake Formation configuration settings for the crawler.

Properties

AccountId

Required for cross account crawls.

UseLakeFormationCredentials

Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.

Constructors

LakeFormationConfigurationProperty()

Specifies AWS Lake Formation configuration settings for the crawler.

public LakeFormationConfigurationProperty()
Remarks

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

             var lakeFormationConfigurationProperty = new LakeFormationConfigurationProperty {
                 AccountId = "accountId",
                 UseLakeFormationCredentials = false
             };

Properties

AccountId

Required for cross account crawls.

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

string

Remarks

For same account crawls as the target data, this can be left as null.

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

UseLakeFormationCredentials

Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.

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

object

Remarks

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

Implements

CfnCrawler.ILakeFormationConfigurationProperty
Back to top Generated by DocFX