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-07-31T10:49:55.182Z")
@Stability(Experimental)
public interface MaintenanceWindow
extends software.amazon.jsii.JsiiSerializable
(experimental) Maintenance Window configuration for MediaConnect Flow.
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()
.maintenanceDay(MaintenanceDay.MONDAY)
.maintenanceStartHour("maintenanceStartHour")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMaintenanceWindowstatic final classAn implementation forMaintenanceWindow -
Method Summary
Modifier and TypeMethodDescriptionstatic MaintenanceWindow.Builderbuilder()(experimental) A day of a week when the maintenance will happen.(experimental) UTC time when the maintenance will happen.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaintenanceDay
(experimental) A day of a week when the maintenance will happen. -
getMaintenanceStartHour
(experimental) UTC time when the maintenance will happen.Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00.
-
builder
- Returns:
- a
MaintenanceWindow.BuilderofMaintenanceWindow
-