interface MaintenanceWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AmazonMQ.CfnBroker.MaintenanceWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamazonmq#CfnBroker_MaintenanceWindowProperty |
Java | software.amazon.awscdk.services.amazonmq.CfnBroker.MaintenanceWindowProperty |
Python | aws_cdk.aws_amazonmq.CfnBroker.MaintenanceWindowProperty |
TypeScript | aws-cdk-lib » aws_amazonmq » CfnBroker » MaintenanceWindowProperty |
The parameters that determine the WeeklyStartTime.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_amazonmq as amazonmq } from 'aws-cdk-lib';
const maintenanceWindowProperty: amazonmq.CfnBroker.MaintenanceWindowProperty = {
dayOfWeek: 'dayOfWeek',
timeOfDay: 'timeOfDay',
timeZone: 'timeZone',
};
Properties
| Name | Type | Description |
|---|---|---|
| day | string | Required. |
| time | string | Required. |
| time | string | The time zone, UTC by default, in either the Country/City format, or the UTC offset format. |
dayOfWeek
Type:
string
Required.
The day of the week.
timeOfDay
Type:
string
Required.
The time, in 24-hour format.
timeZone
Type:
string
The time zone, UTC by default, in either the Country/City format, or the UTC offset format.

.NET
Go
Java
Python
TypeScript