Interface CfnOdbNetwork.KmsAccessProperty

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

@Stability(Stable) public static interface CfnOdbNetwork.KmsAccessProperty extends software.amazon.jsii.JsiiSerializable
The AWS Key Management Service (KMS) access 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.odb.*;
 KmsAccessProperty kmsAccessProperty = KmsAccessProperty.builder()
         .domainName("domainName")
         .ipv4Addresses(List.of("ipv4Addresses"))
         .kmsPolicyDocument("kmsPolicyDocument")
         .status("status")
         .build();
 

See Also: