Interface CfnVectorBucket.EncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVectorBucket.EncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnVectorBucket
@Stability(Stable)
public static interface CfnVectorBucket.EncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The encryption configuration for the vector bucket.
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.s3vectors.*;
EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.sseType("sseType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVectorBucket.EncryptionConfigurationPropertystatic final classAn implementation forCfnVectorBucket.EncryptionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyArn
AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration.This parameter is allowed if and only if sseType is set to aws:kms
- See Also:
-
getSseType
The server-side encryption type to use for the encryption configuration of the vector bucket.By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
Default: - "AES256"
- See Also:
-
builder
-