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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudExadataInfrastructure.MaintenanceWindowPropertystatic final classAn implementation forCfnCloudExadataInfrastructure.MaintenanceWindowProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default NumberThe custom action timeout in minutes for the maintenance window.The days of the week when maintenance can be performed.default ObjectThe hours of the day when maintenance can be performed.default ObjectIndicates whether custom action timeout is enabled for the maintenance window.default NumberThe lead time in weeks before the maintenance window.The months when maintenance can be performed.default StringThe patching mode for the maintenance window.default StringThe preference for the maintenance window scheduling.default ObjectThe weeks of the month when maintenance can be performed.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getCustomActionTimeoutInMinsThe custom action timeout in minutes for the maintenance window.- See Also:
 
- 
getDaysOfWeekThe days of the week when maintenance can be performed.- See Also:
 
- 
getHoursOfDayThe hours of the day when maintenance can be performed.Returns union: either Listinvalid input: '<' Number> orIResolvable- See Also:
 
- 
getIsCustomActionTimeoutEnabledIndicates whether custom action timeout is enabled for the maintenance window.Returns union: either BooleanorIResolvable- See Also:
 
- 
getLeadTimeInWeeksThe lead time in weeks before the maintenance window.- See Also:
 
- 
getMonthsThe months when maintenance can be performed.- See Also:
 
- 
getPatchingModeThe patching mode for the maintenance window.- See Also:
 
- 
getPreferenceThe preference for the maintenance window scheduling.- See Also:
 
- 
getWeeksOfMonthThe weeks of the month when maintenance can be performed.Returns union: either Listinvalid input: '<' Number> orIResolvable- See Also:
 
- 
builder
 
-