interface LakeFormationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnEnvironmentBlueprintConfigurationPropsMixin.LakeFormationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnEnvironmentBlueprintConfigurationPropsMixin_LakeFormationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnEnvironmentBlueprintConfigurationPropsMixin.LakeFormationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentBlueprintConfigurationPropsMixin.LakeFormationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnEnvironmentBlueprintConfigurationPropsMixin » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const lakeFormationConfigurationProperty: datazone_mixins.CfnEnvironmentBlueprintConfigurationPropsMixin.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