Interface CfnCollection.EncryptionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollection.EncryptionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCollection
@Stability(Stable)
public static interface CfnCollection.EncryptionConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration to encrypt the collection.
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.opensearchserverless.*;
EncryptionConfigProperty encryptionConfigProperty = EncryptionConfigProperty.builder()
.awsOwnedKey(false)
.kmsKeyArn("kmsKeyArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollection.EncryptionConfigPropertystatic final classAn implementation forCfnCollection.EncryptionConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsOwnedKey
The configuration to encrypt the collection with AWS owned key.Returns union: either
BooleanorIResolvable- See Also:
-
getKmsKeyArn
The ARN of the KMS key to encrypt the collection with.- See Also:
-
builder
-