Interface WindowStartTime
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WindowStartTime.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:05.072Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forWindowStartTime
static final class
An implementation forWindowStartTime
-
Method Summary
Modifier and TypeMethodDescriptionstatic WindowStartTime.Builder
builder()
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.Builder
ofWindowStartTime
-