Interface CfnCloudVmCluster.DbNodeProperty

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

@Stability(Stable) public static interface CfnCloudVmCluster.DbNodeProperty extends software.amazon.jsii.JsiiSerializable
Information about a DB node.

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.*;
 DbNodeProperty dbNodeProperty = DbNodeProperty.builder()
         .dbServerId("dbServerId")
         // the properties below are optional
         .backupIpId("backupIpId")
         .backupVnic2Id("backupVnic2Id")
         .cpuCoreCount(123)
         .dbNodeArn("dbNodeArn")
         .dbNodeId("dbNodeId")
         .dbNodeStorageSizeInGBs(123)
         .dbSystemId("dbSystemId")
         .hostIpId("hostIpId")
         .hostname("hostname")
         .memorySizeInGBs(123)
         .ocid("ocid")
         .status("status")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .vnic2Id("vnic2Id")
         .vnicId("vnicId")
         .build();
 

See Also: