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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSecurityConfiguration.LakeFormationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizedSessionTagValue
The session tag to authorize Lake Formation access.- See Also:
-
getQueryAccessControlEnabled
Whether query access control is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
getQueryEngineRoleArn
The ARN of the query engine role.- See Also:
-
getSecureNamespaceInfo
Secure namespace information for Lake Formation.Returns union: either
IResolvableorCfnSecurityConfiguration.SecureNamespaceInfoProperty- See Also:
-
builder
@Stability(Stable) static CfnSecurityConfiguration.LakeFormationConfigurationProperty.Builder builder()
-