Interface CfnCloudExadataInfrastructure.MaintenanceWindowProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCloudExadataInfrastructure.MaintenanceWindowProperty.Jsii$Proxy
Enclosing class:
CfnCloudExadataInfrastructure

@Stability(Stable) public static interface CfnCloudExadataInfrastructure.MaintenanceWindowProperty extends software.amazon.jsii.JsiiSerializable
The scheduling details for the maintenance window.

Patching and system updates take place during the maintenance window.

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.*;
 MaintenanceWindowProperty maintenanceWindowProperty = 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();
 

See Also: