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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCloudExadataInfrastructureProps
static final class
An implementation forCfnCloudExadataInfrastructureProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the Availability Zone (AZ) where the Exadata infrastructure is located.default String
The AZ ID of the AZ where the Exadata infrastructure is located.default Number
The number of database servers for the Exadata infrastructure.default Object
The email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.default String
The database server model type of the Exadata infrastructure.default String
The user-friendly name for the Exadata infrastructure.default String
getShape()
The model name of the Exadata infrastructure.default Number
The number of storage servers that are activated for the Exadata infrastructure.default String
The storage server model type of the Exadata infrastructure.getTags()
Tags to assign to the Exadata Infrastructure.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
The name of the Availability Zone (AZ) where the Exadata infrastructure is located.Required when creating an Exadata infrastructure. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the infrastructure.
- See Also:
-
getAvailabilityZoneId
The AZ ID of the AZ where the Exadata infrastructure is located.Required when creating an Exadata infrastructure. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the infrastructure.
- See Also:
-
getComputeCount
The number of database servers for the Exadata infrastructure.Required when creating an Exadata infrastructure.
- See Also:
-
getCustomerContactsToSendToOci
The email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.- See Also:
-
getDatabaseServerType
The database server model type of the Exadata infrastructure.For the list of valid model names, use the
ListDbSystemShapes
operation.- See Also:
-
getDisplayName
The user-friendly name for the Exadata infrastructure.Required when creating an Exadata infrastructure.
- See Also:
-
getShape
The model name of the Exadata infrastructure.Required when creating an Exadata infrastructure.
- See Also:
-
getStorageCount
The number of storage servers that are activated for the Exadata infrastructure.Required when creating an Exadata infrastructure.
- See Also:
-
getStorageServerType
The storage server model type of the Exadata infrastructure.For the list of valid model names, use the
ListDbSystemShapes
operation.- See Also:
-
getTags
Tags to assign to the Exadata Infrastructure.- See Also:
-
builder
-