Interface MaintenanceWindow
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MaintenanceWindow.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:28.373Z")
@Stability(Experimental)
public interface MaintenanceWindow
extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration for scheduled maintenance windows.
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.mediaconnect.alpha.*;
MaintenanceWindow maintenanceWindow = MaintenanceWindow.builder()
.day(MaintenanceDay.MONDAY)
.time("time")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMaintenanceWindowstatic final classAn implementation forMaintenanceWindow -
Method Summary
Modifier and TypeMethodDescriptionstatic MaintenanceWindow.Builderbuilder()getDay()(experimental) A day of a week when the maintenance will happen.getTime()(experimental) The maintenance start time in UTC, 24-hour HH:MM format.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDay
(experimental) A day of a week when the maintenance will happen. -
getTime
(experimental) The maintenance start time in UTC, 24-hour HH:MM format.Minutes must be 00 (e.g., '02:00', '13:00').
-
builder
- Returns:
- a
MaintenanceWindow.BuilderofMaintenanceWindow
-