aws-cdk-lib.aws_opensearchservice.CfnDomain.WindowStartTimeProperty

interface WindowStartTimeProperty

LanguageType name
.NETAmazon.CDK.AWS.OpenSearchService.CfnDomain.WindowStartTimeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#CfnDomain_WindowStartTimeProperty
Javasoftware.amazon.awscdk.services.opensearchservice.CfnDomain.WindowStartTimeProperty
Pythonaws_cdk.aws_opensearchservice.CfnDomain.WindowStartTimeProperty
TypeScript aws-cdk-lib » aws_opensearchservice » CfnDomain » WindowStartTimeProperty

A custom start time for the off-peak window, in Coordinated Universal Time (UTC).

The window length will always be 10 hours, so you can't specify an end time. For example, if you specify 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from 'aws-cdk-lib';
const windowStartTimeProperty: opensearchservice.CfnDomain.WindowStartTimeProperty = {
  hours: 123,
  minutes: 123,
};

Properties

NameTypeDescription
hoursnumberThe start hour of the window in Coordinated Universal Time (UTC), using 24-hour time.
minutesnumberThe 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. The minimum value is 0 and the maximum value is 23.


minutes

Type: number

The start minute of the window, in UTC.

The minimum value is 0 and the maximum value is 59.