interface WindowStartTime
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.OpenSearchService.WindowStartTime | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#WindowStartTime | 
|  Java | software.amazon.awscdk.services.opensearchservice.WindowStartTime | 
|  Python | aws_cdk.aws_opensearchservice.WindowStartTime | 
|  TypeScript (source) | aws-cdk-lib»aws_opensearchservice»WindowStartTime | 
Example
const domain = new Domain(this, 'Domain', {
  version: EngineVersion.OPENSEARCH_1_3,
  offPeakWindowEnabled: true, // can be omitted if offPeakWindowStart is set
  offPeakWindowStart: {
    hours: 20,
    minutes: 0,
  },
});
Properties
| Name | Type | Description | 
|---|---|---|
| hours | number | The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time. | 
| minutes | number | The start minute of the window, in UTC. | 
hours
Type:
number
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time.
For example, 17 refers to 5:00 P.M. UTC.
minutes
Type:
number
The start minute of the window, in UTC.
