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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomain.OffPeakWindowOptionsProperty
static final class
An implementation forCfnDomain.OffPeakWindowOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Specifies whether off-peak window settings are enabled for the domain. -
getOffPeakWindow
Off-peak window settings for the domain. -
builder
-