Interface WindowStartTime
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WindowStartTime.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:14.218Z")
@Stability(Stable)
public interface WindowStartTime
extends software.amazon.jsii.JsiiSerializable
Example:
Domain domain = Domain.Builder.create(this, "Domain")
.version(EngineVersion.OPENSEARCH_1_3)
.offPeakWindowEnabled(true) // can be omitted if offPeakWindowStart is set
.offPeakWindowStart(WindowStartTime.builder()
.hours(20)
.minutes(0)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWindowStartTimestatic final classAn implementation forWindowStartTime -
Method Summary
Modifier and TypeMethodDescriptionstatic WindowStartTime.Builderbuilder()getHours()The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time.The start minute of the window, in UTC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHours
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.
Default: - 22
-
getMinutes
The start minute of the window, in UTC.Default: - 0
-
builder
- Returns:
- a
WindowStartTime.BuilderofWindowStartTime
-