Interface CfnSecurityConfiguration.AuthorizationConfigurationProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.AuthorizationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Authorization configuration for the security 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.*;
 AuthorizationConfigurationProperty authorizationConfigurationProperty = AuthorizationConfigurationProperty.builder()
         .lakeFormationConfiguration(LakeFormationConfigurationProperty.builder()
                 .authorizedSessionTagValue("authorizedSessionTagValue")
                 .queryAccessControlEnabled(false)
                 .queryEngineRoleArn("queryEngineRoleArn")
                 .secureNamespaceInfo(SecureNamespaceInfoProperty.builder()
                         .clusterId("clusterId")
                         .namespace("namespace")
                         .build())
                 .build())
         .build();
 

See Also: