Interface CfnCloudExadataInfrastructureProps

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-10-01T17:46:58.804Z") @Stability(Stable) public interface CfnCloudExadataInfrastructureProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCloudExadataInfrastructure.

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.*;
 CfnCloudExadataInfrastructureProps cfnCloudExadataInfrastructureProps = CfnCloudExadataInfrastructureProps.builder()
         .availabilityZone("availabilityZone")
         .availabilityZoneId("availabilityZoneId")
         .computeCount(123)
         .customerContactsToSendToOci(List.of(CustomerContactProperty.builder()
                 .email("email")
                 .build()))
         .databaseServerType("databaseServerType")
         .displayName("displayName")
         .maintenanceWindow(MaintenanceWindowProperty.builder()
                 .customActionTimeoutInMins(123)
                 .daysOfWeek(List.of("daysOfWeek"))
                 .hoursOfDay(List.of(123))
                 .isCustomActionTimeoutEnabled(false)
                 .leadTimeInWeeks(123)
                 .months(List.of("months"))
                 .patchingMode("patchingMode")
                 .preference("preference")
                 .weeksOfMonth(List.of(123))
                 .build())
         .shape("shape")
         .storageCount(123)
         .storageServerType("storageServerType")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: