interface MaintenanceWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmazonMQ.Mixins.CfnBrokerPropsMixin.MaintenanceWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamazonmq/mixins#CfnBrokerPropsMixin_MaintenanceWindowProperty |
Java | software.amazon.awscdk.mixins.preview.services.amazonmq.mixins.CfnBrokerPropsMixin.MaintenanceWindowProperty |
Python | aws_cdk.mixins_preview.aws_amazonmq.mixins.CfnBrokerPropsMixin.MaintenanceWindowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amazonmq » mixins » CfnBrokerPropsMixin » 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 { mixins as amazonmq_mixins } from '@aws-cdk/mixins-preview/aws-amazonmq';
const maintenanceWindowProperty: amazonmq_mixins.CfnBrokerPropsMixin.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
(optional)
Required.
The day of the week.
timeOfDay?
Type:
string
(optional)
Required.
The time, in 24-hour format.
timeZone?
Type:
string
(optional)
The time zone, UTC by default, in either the Country/City format, or the UTC offset format.

.NET
Go
Java
Python
TypeScript