interface OffPeakWindowOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins.CfnDomainPropsMixin.OffPeakWindowOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchservice/mixins#CfnDomainPropsMixin_OffPeakWindowOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.CfnDomainPropsMixin.OffPeakWindowOptionsProperty |
Python | aws_cdk.mixins_preview.aws_opensearchservice.mixins.CfnDomainPropsMixin.OffPeakWindowOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchservice » mixins » CfnDomainPropsMixin » OffPeakWindowOptionsProperty |
Off-peak window settings for the domain.
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 offPeakWindowOptionsProperty: opensearchservice_mixins.CfnDomainPropsMixin.OffPeakWindowOptionsProperty = {
enabled: false,
offPeakWindow: {
windowStartTime: {
hours: 123,
minutes: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Specifies whether off-peak window settings are enabled for the domain. |
| off | IResolvable | Off | Off-peak window settings for the domain. |
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether off-peak window settings are enabled for the domain.
offPeakWindow?
Type:
IResolvable | Off
(optional)
Off-peak window settings for the domain.

.NET
Go
Java
Python
TypeScript