Interface CfnSecurityConfiguration.EncryptionConfigurationProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.EncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Encryption 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.*;
 EncryptionConfigurationProperty encryptionConfigurationProperty = 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();
 

See Also: