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
Specifies an 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.glue.*;
EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
.cloudWatchEncryption(CloudWatchEncryptionProperty.builder()
.cloudWatchEncryptionMode("cloudWatchEncryptionMode")
.kmsKeyArn("kmsKeyArn")
.build())
.jobBookmarksEncryption(JobBookmarksEncryptionProperty.builder()
.jobBookmarksEncryptionMode("jobBookmarksEncryptionMode")
.kmsKeyArn("kmsKeyArn")
.build())
.s3Encryptions(List.of(S3EncryptionProperty.builder()
.kmsKeyArn("kmsKeyArn")
.s3EncryptionMode("s3EncryptionMode")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityConfiguration.EncryptionConfigurationPropertystatic final classAn implementation forCfnSecurityConfiguration.EncryptionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchEncryption
The encryption configuration for Amazon CloudWatch. -
getJobBookmarksEncryption
The encryption configuration for job bookmarks. -
getS3Encryptions
The encyption configuration for Amazon Simple Storage Service (Amazon S3) data. -
builder
@Stability(Stable) static CfnSecurityConfiguration.EncryptionConfigurationProperty.Builder builder()
-