interface LakeFormationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnEnvironmentBlueprintConfiguration_LakeFormationConfigurationProperty |
Java | software.amazon.awscdk.services.datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty |
Python | aws_cdk.aws_datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnEnvironmentBlueprintConfiguration » LakeFormationConfigurationProperty |
The Lake Formation configuration of the Data Lake blueprint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const lakeFormationConfigurationProperty: datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty = {
locationRegistrationExcludeS3Locations: ['locationRegistrationExcludeS3Locations'],
locationRegistrationRole: 'locationRegistrationRole',
};
Properties
| Name | Type | Description |
|---|---|---|
| location | string[] | Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode. |
| location | string | The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode. |
locationRegistrationExcludeS3Locations?
Type:
string[]
(optional)
Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
locationRegistrationRole?
Type:
string
(optional)
The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.

.NET
Go
Java
Python
TypeScript