Interface CfnCloudExadataInfrastructureProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudExadataInfrastructureProps.Jsii$Proxy
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudExadataInfrastructurePropsstatic final classAn implementation forCfnCloudExadataInfrastructureProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Availability Zone (AZ) where the Exadata infrastructure is located.default StringThe AZ ID of the AZ where the Exadata infrastructure is located.default NumberThe number of database servers for the Exadata infrastructure.default ObjectThe email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.default StringThe database server model type of the Exadata infrastructure.default StringThe user-friendly name for the Exadata infrastructure.default ObjectThe scheduling details for the maintenance window.default StringgetShape()The model name of the Exadata infrastructure.default NumberThe number of storage servers that are activated for the Exadata infrastructure.default StringThe 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCloudExadataInfrastructure.CustomerContactProperty>- See Also:
-
getDatabaseServerType
The database server model type of the Exadata infrastructure.For the list of valid model names, use the
ListDbSystemShapesoperation.- See Also:
-
getDisplayName
The user-friendly name for the Exadata infrastructure.Required when creating an Exadata infrastructure.
- See Also:
-
getMaintenanceWindow
The scheduling details for the maintenance window.Patching and system updates take place during the maintenance window.
Returns union: either
IResolvableorCfnCloudExadataInfrastructure.MaintenanceWindowProperty- 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
ListDbSystemShapesoperation.- See Also:
-
getTags
Tags to assign to the Exadata Infrastructure.- See Also:
-
builder
-