interface MaintenanceWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ODB.CfnCloudAutonomousVmCluster.MaintenanceWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnCloudAutonomousVmCluster_MaintenanceWindowProperty |
Java | software.amazon.awscdk.services.odb.CfnCloudAutonomousVmCluster.MaintenanceWindowProperty |
Python | aws_cdk.aws_odb.CfnCloudAutonomousVmCluster.MaintenanceWindowProperty |
TypeScript | aws-cdk-lib » aws_odb » CfnCloudAutonomousVmCluster » MaintenanceWindowProperty |
The scheduling details for the maintenance window.
Patching and system updates take place during the maintenance window.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from 'aws-cdk-lib';
const maintenanceWindowProperty: odb.CfnCloudAutonomousVmCluster.MaintenanceWindowProperty = {
daysOfWeek: ['daysOfWeek'],
hoursOfDay: [123],
leadTimeInWeeks: 123,
months: ['months'],
preference: 'preference',
weeksOfMonth: [123],
};
Properties
| Name | Type | Description |
|---|---|---|
| days | string[] | The days of the week when maintenance can be performed. |
| hours | number[] | IResolvable | The hours of the day when maintenance can be performed. |
| lead | number | The lead time in weeks before the maintenance window. |
| months? | string[] | The months when maintenance can be performed. |
| preference? | string | The preference for the maintenance window scheduling. |
| weeks | number[] | IResolvable | The weeks of the month when maintenance can be performed. |
daysOfWeek?
Type:
string[]
(optional)
The days of the week when maintenance can be performed.
hoursOfDay?
Type:
number[] | IResolvable
(optional)
The hours of the day when maintenance can be performed.
leadTimeInWeeks?
Type:
number
(optional)
The lead time in weeks before the maintenance window.
months?
Type:
string[]
(optional)
The months when maintenance can be performed.
preference?
Type:
string
(optional)
The preference for the maintenance window scheduling.
weeksOfMonth?
Type:
number[] | IResolvable
(optional)
The weeks of the month when maintenance can be performed.

.NET
Go
Java
Python
TypeScript