Interface CfnS3TableIntegration.EncryptionConfigProperty

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

@Stability(Stable) public static interface CfnS3TableIntegration.EncryptionConfigProperty extends software.amazon.jsii.JsiiSerializable
Encryption configuration for the S3 Table Integration.

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.observabilityadmin.*;
 EncryptionConfigProperty encryptionConfigProperty = EncryptionConfigProperty.builder()
         .sseAlgorithm("sseAlgorithm")
         // the properties below are optional
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: