Interface CfnSecurityConfiguration.LakeFormationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSecurityConfiguration.LakeFormationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnSecurityConfiguration

@Stability(Stable) public static interface CfnSecurityConfiguration.LakeFormationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Lake Formation configuration.

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.emrcontainers.*;
 LakeFormationConfigurationProperty lakeFormationConfigurationProperty = LakeFormationConfigurationProperty.builder()
         .authorizedSessionTagValue("authorizedSessionTagValue")
         .queryAccessControlEnabled(false)
         .queryEngineRoleArn("queryEngineRoleArn")
         .secureNamespaceInfo(SecureNamespaceInfoProperty.builder()
                 .clusterId("clusterId")
                 .namespace("namespace")
                 .build())
         .build();
 

See Also: