Class WindowStartTime
Inheritance
System.Object
WindowStartTime
Implements
Namespace: Amazon.CDK.AWS.OpenSearchService
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WindowStartTime : Object, IWindowStartTime
Syntax (vb)
Public Class WindowStartTime
Inherits Object
Implements IWindowStartTime
Remarks
ExampleMetadata: infused
Examples
var domain = new Domain(this, "Domain", new DomainProps {
Version = EngineVersion.OPENSEARCH_1_3,
OffPeakWindowEnabled = true, // can be omitted if offPeakWindowStart is set
OffPeakWindowStart = new WindowStartTime {
Hours = 20,
Minutes = 0
}
});
Synopsis
Constructors
WindowStartTime() |
Properties
Hours | The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time. |
Minutes | The start minute of the window, in UTC. |
Constructors
WindowStartTime()
public WindowStartTime()
Properties
Hours
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time.
public double Hours { get; set; }
Property Value
System.Double
Remarks
For example, 17 refers to 5:00 P.M. UTC.
Default: - 22
Minutes
The start minute of the window, in UTC.
public double Minutes { get; set; }
Property Value
System.Double
Remarks
Default: - 0