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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCloudAutonomousVmCluster.MaintenanceWindowProperty
static final class
An implementation forCfnCloudAutonomousVmCluster.MaintenanceWindowProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The days of the week when maintenance can be performed.default Object
The hours of the day when maintenance can be performed.default Number
The lead time in weeks before the maintenance window.The months when maintenance can be performed.default String
The preference for the maintenance window scheduling.default Object
The weeks of the month when maintenance can be performed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDaysOfWeek
The days of the week when maintenance can be performed.- See Also:
-
getHoursOfDay
The hours of the day when maintenance can be performed.- See Also:
-
getLeadTimeInWeeks
The lead time in weeks before the maintenance window.- See Also:
-
getMonths
The months when maintenance can be performed.- See Also:
-
getPreference
The preference for the maintenance window scheduling.- See Also:
-
getWeeksOfMonth
The weeks of the month when maintenance can be performed.- See Also:
-
builder
-