Interface CfnCloudVmClusterProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCloudVmClusterProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-16T11:43:19.097Z") @Stability(Stable) public interface CfnCloudVmClusterProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCloudVmCluster.

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.*;
 CfnCloudVmClusterProps cfnCloudVmClusterProps = CfnCloudVmClusterProps.builder()
         .cloudExadataInfrastructureId("cloudExadataInfrastructureId")
         .clusterName("clusterName")
         .cpuCoreCount(123)
         .dataCollectionOptions(DataCollectionOptionsProperty.builder()
                 .isDiagnosticsEventsEnabled(false)
                 .isHealthMonitoringEnabled(false)
                 .isIncidentLogsEnabled(false)
                 .build())
         .dataStorageSizeInTBs(123)
         .dbNodeStorageSizeInGBs(123)
         .dbServers(List.of("dbServers"))
         .displayName("displayName")
         .giVersion("giVersion")
         .hostname("hostname")
         .isLocalBackupEnabled(false)
         .isSparseDiskgroupEnabled(false)
         .licenseModel("licenseModel")
         .memorySizeInGBs(123)
         .odbNetworkId("odbNetworkId")
         .scanListenerPortTcp(123)
         .sshPublicKeys(List.of("sshPublicKeys"))
         .systemVersion("systemVersion")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .timeZone("timeZone")
         .build();
 

See Also: