Interface CfnCloudAutonomousVmCluster.MaintenanceWindowProperty

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

@Stability(Stable) public static interface CfnCloudAutonomousVmCluster.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()
         .daysOfWeek(List.of("daysOfWeek"))
         .hoursOfDay(List.of(123))
         .leadTimeInWeeks(123)
         .months(List.of("months"))
         .preference("preference")
         .weeksOfMonth(List.of(123))
         .build();
 

See Also: