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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnS3TableIntegration.EncryptionConfigPropertystatic final classAn implementation forCfnS3TableIntegration.EncryptionConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSseAlgorithm
The server-side encryption algorithm used to encrypt the S3 Table(s) data.- See Also:
-
getKmsKeyArn
The ARN of the KMS key used to encrypt the S3 Table Integration.- See Also:
-
builder
-