Interface CfnCloudVmClusterMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:30.387Z") @Stability(Stable) public interface CfnCloudVmClusterMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnCloudVmClusterPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.odb.*;
 CfnCloudVmClusterMixinProps cfnCloudVmClusterMixinProps = CfnCloudVmClusterMixinProps.builder()
         .cloudExadataInfrastructureId("cloudExadataInfrastructureId")
         .clusterName("clusterName")
         .cpuCoreCount(123)
         .dataCollectionOptions(DataCollectionOptionsProperty.builder()
                 .isDiagnosticsEventsEnabled(false)
                 .isHealthMonitoringEnabled(false)
                 .isIncidentLogsEnabled(false)
                 .build())
         .dataStorageSizeInTBs(123)
         .dbNodes(List.of(DbNodeProperty.builder()
                 .backupIpId("backupIpId")
                 .backupVnic2Id("backupVnic2Id")
                 .cpuCoreCount(123)
                 .dbNodeArn("dbNodeArn")
                 .dbNodeId("dbNodeId")
                 .dbNodeStorageSizeInGBs(123)
                 .dbServerId("dbServerId")
                 .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()))
         .dbNodeStorageSizeInGBs(123)
         .dbServers(List.of("dbServers"))
         .displayName("displayName")
         .giVersion("giVersion")
         .hostname("hostname")
         .iamRoles(List.of(IamRoleProperty.builder()
                 .awsIntegration("awsIntegration")
                 .iamRoleArn("iamRoleArn")
                 .status("status")
                 .build()))
         .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: