Interface CfnBroker.EncryptionOptionsProperty

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

@Stability(Stable) public static interface CfnBroker.EncryptionOptionsProperty extends software.amazon.jsii.JsiiSerializable
Encryption options for the broker.

Does not apply to RabbitMQ brokers.

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.amazonmq.*;
 EncryptionOptionsProperty encryptionOptionsProperty = EncryptionOptionsProperty.builder()
         .useAwsOwnedKey(false)
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: