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 |
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 * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const maintenanceWindow: mediaconnect_alpha.MaintenanceWindow = {
maintenanceDay: mediaconnect_alpha.MaintenanceDay.MONDAY,
maintenanceStartHour: 'maintenanceStartHour',
};
Properties
| Name | Type | Description |
|---|---|---|
| maintenance | Maintenance | A day of a week when the maintenance will happen. |
| maintenance | string | UTC time when the maintenance will happen. |
maintenanceDay
Type:
Maintenance
A day of a week when the maintenance will happen.
maintenanceStartHour
Type:
string
UTC time when the maintenance will happen.
Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00.

.NET
Go
Java
Python
TypeScript (