interface MaintenanceWindow
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MaintenanceWindow |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MaintenanceWindow |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MaintenanceWindow |
Python | aws_cdk.aws_mediaconnect_alpha.MaintenanceWindow |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MaintenanceWindow |
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 * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const maintenanceWindow: mediaconnect_alpha.MaintenanceWindow = {
day: mediaconnect_alpha.MaintenanceDay.MONDAY,
time: 'time',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | Maintenance | A day of a week when the maintenance will happen. |
| time | string | The maintenance start time in UTC, 24-hour HH:MM format. |
day
Type:
Maintenance
A day of a week when the maintenance will happen.
time
Type:
string
The maintenance start time in UTC, 24-hour HH:MM format.
Minutes must be 00 (e.g., '02:00', '13:00').

.NET
Go
Java
Python
TypeScript (