Interface CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnEnvironmentBlueprintConfiguration
@Stability(Stable)
public static interface CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.datazone.*; LakeFormationConfigurationProperty lakeFormationConfigurationProperty = LakeFormationConfigurationProperty.builder() .locationRegistrationExcludeS3Locations(List.of("locationRegistrationExcludeS3Locations")) .locationRegistrationRole("locationRegistrationRole") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.default 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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocationRegistrationExcludeS3Locations
Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.- See Also:
-
getLocationRegistrationRole
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.- See Also:
-
builder
@Stability(Stable) static CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty.Builder builder()
-