interface OffPeakWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins.CfnDomainPropsMixin.OffPeakWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchservice/mixins#CfnDomainPropsMixin_OffPeakWindowProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.CfnDomainPropsMixin.OffPeakWindowProperty |
Python | aws_cdk.mixins_preview.aws_opensearchservice.mixins.CfnDomainPropsMixin.OffPeakWindowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchservice » mixins » CfnDomainPropsMixin » OffPeakWindowProperty |
A custom 10-hour, low-traffic window during which OpenSearch Service can perform mandatory configuration changes on the domain.
These actions can include scheduled service software updates and blue/green Auto-Tune enhancements. OpenSearch Service will schedule these actions during the window that you specify. If you don't specify a window start time, it defaults to 10:00 P.M. local time.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchservice_mixins } from '@aws-cdk/mixins-preview/aws-opensearchservice';
const offPeakWindowProperty: opensearchservice_mixins.CfnDomainPropsMixin.OffPeakWindowProperty = {
windowStartTime: {
hours: 123,
minutes: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| window | IResolvable | Window | The desired start time for an off-peak maintenance window. |
windowStartTime?
Type:
IResolvable | Window
(optional)
The desired start time for an off-peak maintenance window.

.NET
Go
Java
Python
TypeScript