Interface CfnInstanceStorageConfig.EncryptionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstanceStorageConfig.EncryptionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnInstanceStorageConfig
@Stability(Stable)
public static interface CfnInstanceStorageConfig.EncryptionConfigProperty
extends software.amazon.jsii.JsiiSerializable
The 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.connect.*;
EncryptionConfigProperty encryptionConfigProperty = EncryptionConfigProperty.builder()
.encryptionType("encryptionType")
.keyId("keyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInstanceStorageConfig.EncryptionConfigPropertystatic final classAn implementation forCfnInstanceStorageConfig.EncryptionConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionType
The type of encryption.- See Also:
-
getKeyId
The full ARN of the encryption key.Be sure to provide the full ARN of the encryption key, not just the ID.
Amazon Connect supports only KMS keys with the default key spec of
SYMMETRIC_DEFAULT.- See Also:
-
builder
-