interface MaintenanceSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.MaintenanceSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#MaintenanceSettings |
Java | software.amazon.awscdk.services.medialive.alpha.MaintenanceSettings |
Python | aws_cdk.aws_medialive_alpha.MaintenanceSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป MaintenanceSettings |
Maintenance window settings for the channel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const maintenanceDay: medialive_alpha.MaintenanceDay;
const maintenanceSettings: medialive_alpha.MaintenanceSettings = {
day: maintenanceDay,
// the properties below are optional
time: 'time',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | Maintenance | The day of the week for maintenance. |
| time? | string | The start time for maintenance in UTC (HH:MM format, e.g. '02:00'). |
day
Type:
Maintenance
The day of the week for maintenance.
time?
Type:
string
(optional, default: '02:00')
The start time for maintenance in UTC (HH:MM format, e.g. '02:00').

.NET
Go
Java
Python
TypeScript (