Interface CfnCloudExadataInfrastructureProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-16T11:43:19.093Z") @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")
         .shape("shape")
         .storageCount(123)
         .storageServerType("storageServerType")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: