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();
 
  • Method Details

    • getHours

      @Stability(Stable) @NotNull Number 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

      @Stability(Stable) @NotNull Number getMinutes()
      The start minute of the window, in UTC.

      Default: - 0

    • builder

      @Stability(Stable) static WindowStartTime.Builder builder()
      Returns:
      a WindowStartTime.Builder of WindowStartTime