Interface CfnSecurityConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSecurityConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-03T13:58:23.408Z") @Stability(Stable) public interface CfnSecurityConfigurationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSecurityConfiguration.

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.*;
 CfnSecurityConfigurationProps cfnSecurityConfigurationProps = CfnSecurityConfigurationProps.builder()
         .securityConfigurationData(SecurityConfigurationDataProperty.builder()
                 .authenticationConfiguration(AuthenticationConfigurationProperty.builder()
                         .iamConfiguration(Map.of(
                                 "systemRole", "systemRole"))
                         .identityCenterConfiguration(IdentityCenterConfigurationProperty.builder()
                                 .enableIdentityCenter(false)
                                 .identityCenterApplicationAssignmentRequired(false)
                                 .identityCenterInstanceArn("identityCenterInstanceArn")
                                 .build())
                         .build())
                 .authorizationConfiguration(AuthorizationConfigurationProperty.builder()
                         .lakeFormationConfiguration(LakeFormationConfigurationProperty.builder()
                                 .authorizedSessionTagValue("authorizedSessionTagValue")
                                 .queryAccessControlEnabled(false)
                                 .queryEngineRoleArn("queryEngineRoleArn")
                                 .secureNamespaceInfo(SecureNamespaceInfoProperty.builder()
                                         .clusterId("clusterId")
                                         .namespace("namespace")
                                         .build())
                                 .build())
                         .build())
                 .encryptionConfiguration(EncryptionConfigurationProperty.builder()
                         .atRestEncryptionConfiguration(AtRestEncryptionConfigurationProperty.builder()
                                 .localDiskEncryptionConfiguration(LocalDiskEncryptionConfigurationProperty.builder()
                                         .awsKmsKeyId("awsKmsKeyId")
                                         .encryptionKeyProviderType("encryptionKeyProviderType")
                                         .build())
                                 .s3EncryptionConfiguration(S3EncryptionConfigurationProperty.builder()
                                         .encryptionOption("encryptionOption")
                                         .kmsKeyId("kmsKeyId")
                                         .build())
                                 .build())
                         .inTransitEncryptionConfiguration(InTransitEncryptionConfigurationProperty.builder()
                                 .tlsCertificateConfiguration(TLSCertificateConfigurationProperty.builder()
                                         .certificateProviderType("certificateProviderType")
                                         .privateKeySecretArn("privateKeySecretArn")
                                         .publicKeySecretArn("publicKeySecretArn")
                                         .build())
                                 .build())
                         .build())
                 .build())
         // the properties below are optional
         .containerProvider(ContainerProviderProperty.builder()
                 .id("id")
                 .type("type")
                 // the properties below are optional
                 .info(ContainerInfoProperty.builder()
                         .eksInfo(EksInfoProperty.builder()
                                 .namespace("namespace")
                                 .build())
                         .build())
                 .build())
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: