Interface CfnSecurityConfiguration.AtRestEncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityConfiguration.AtRestEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityConfiguration
@Stability(Stable)
public static interface CfnSecurityConfiguration.AtRestEncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
At-rest encryption 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.*;
AtRestEncryptionConfigurationProperty atRestEncryptionConfigurationProperty = AtRestEncryptionConfigurationProperty.builder()
.localDiskEncryptionConfiguration(LocalDiskEncryptionConfigurationProperty.builder()
.awsKmsKeyId("awsKmsKeyId")
.encryptionKeyProviderType("encryptionKeyProviderType")
.build())
.s3EncryptionConfiguration(S3EncryptionConfigurationProperty.builder()
.encryptionOption("encryptionOption")
.kmsKeyId("kmsKeyId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSecurityConfiguration.AtRestEncryptionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocalDiskEncryptionConfiguration
Local disk encryption configuration.Returns union: either
IResolvableorCfnSecurityConfiguration.LocalDiskEncryptionConfigurationProperty- See Also:
-
getS3EncryptionConfiguration
S3 encryption configuration.Returns union: either
IResolvableorCfnSecurityConfiguration.S3EncryptionConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnSecurityConfiguration.AtRestEncryptionConfigurationProperty.Builder builder()
-