Class CfnCrawler.LakeFormationConfigurationProperty
Specifies AWS Lake Formation configuration settings for the crawler.
Implements
Inherited Members
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
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
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
Remarks
For same account crawls as the target data, this can be left as null.
UseLakeFormationCredentials
Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
public object? UseLakeFormationCredentials { get; set; }