Interface CfnDomain.WindowStartTimeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomain.WindowStartTimeProperty.Jsii$Proxy
Enclosing class:
CfnDomain

@Stability(Stable) public static interface CfnDomain.WindowStartTimeProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.opensearchservice.*;
 WindowStartTimeProperty windowStartTimeProperty = WindowStartTimeProperty.builder()
         .hours(123)
         .minutes(123)
         .build();