Class WindowStartTime
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.OpenSearchService
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WindowStartTime : IWindowStartTimeSyntax (vb)
Public Class WindowStartTime Implements IWindowStartTimeRemarks
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()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
                }
            });Properties
Hours
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time.
public double Hours { get; set; }Property Value
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
Remarks
Default: - 0