Show / Hide Table of Contents

Class WindowStartTime

Inheritance
object
WindowStartTime
Implements
IWindowStartTime
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.OpenSearchService
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WindowStartTime : IWindowStartTime
Syntax (vb)
Public Class WindowStartTime 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()
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

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

double

Remarks

Default: - 0

Implements

IWindowStartTime
Back to top Generated by DocFX