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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCloudExadataInfrastructure.MaintenanceWindowProperty
static final class
An implementation forCfnCloudExadataInfrastructure.MaintenanceWindowProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
The custom action timeout in minutes for the maintenance window.The days of the week when maintenance can be performed.default Object
The hours of the day when maintenance can be performed.default Object
Indicates whether custom action timeout is enabled for the maintenance window.default Number
The lead time in weeks before the maintenance window.The months when maintenance can be performed.default String
The patching mode for the maintenance window.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
-
getCustomActionTimeoutInMins
The custom action timeout in minutes for the maintenance window.- See Also:
-
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:
-
getIsCustomActionTimeoutEnabled
Indicates whether custom action timeout is enabled for the maintenance window.- See Also:
-
getLeadTimeInWeeks
The lead time in weeks before the maintenance window.- See Also:
-
getMonths
The months when maintenance can be performed.- See Also:
-
getPatchingMode
The patching mode for the maintenance window.- 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
-