Interface CfnDomain.OffPeakWindowOptionsProperty

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

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

See Also: