interface MaintenanceConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MaintenanceConfiguration |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MaintenanceConfiguration |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MaintenanceConfiguration |
Python | aws_cdk.aws_mediaconnect_alpha.MaintenanceConfiguration |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MaintenanceConfiguration |
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 maintenanceConfiguration: mediaconnect_alpha.MaintenanceConfiguration = {
day: mediaconnect_alpha.MaintenanceDay.MONDAY,
time: 'time',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | Maintenance | Day of the week for maintenance (e.g., 'Monday', 'Tuesday'). |
| time | string | Time of day for maintenance in HH:MM format (e.g., '02:00'). |
day
Type:
Maintenance
Day of the week for maintenance (e.g., 'Monday', 'Tuesday').
time
Type:
string
Time of day for maintenance in HH:MM format (e.g., '02:00').

.NET
Go
Java
Python
TypeScript (