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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSecurityConfiguration.EncryptionConfigurationProperty
static final class
An implementation forCfnSecurityConfiguration.EncryptionConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchEncryption
The encryption configuration for Amazon CloudWatch.- See Also:
-
getJobBookmarksEncryption
The encryption configuration for job bookmarks.- See Also:
-
getS3Encryptions
The encyption configuration for Amazon Simple Storage Service (Amazon S3) data.- See Also:
-
builder
@Stability(Stable) static CfnSecurityConfiguration.EncryptionConfigurationProperty.Builder builder()
-