interface MaintenanceWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmazonMQ.CfnBrokerPropsMixin.MaintenanceWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamazonmq#CfnBrokerPropsMixin_MaintenanceWindowProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amazonmq.CfnBrokerPropsMixin.MaintenanceWindowProperty |
Python | aws_cdk.cfn_property_mixins.aws_amazonmq.CfnBrokerPropsMixin.MaintenanceWindowProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amazonmq » 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 { aws_amazonmq as amazonmq } from '@aws-cdk/cfn-property-mixins';
const maintenanceWindowProperty: amazonmq.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