Show / Hide Table of Contents

Class CfnDomain.WindowStartTimeProperty

A custom start time for the off-peak window, in Coordinated Universal Time (UTC).

Inheritance
object
CfnDomain.WindowStartTimeProperty
Implements
CfnDomain.IWindowStartTimeProperty
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 CfnDomain.WindowStartTimeProperty : CfnDomain.IWindowStartTimeProperty
Syntax (vb)
Public Class CfnDomain.WindowStartTimeProperty Implements CfnDomain.IWindowStartTimeProperty
Remarks

The window length will always be 10 hours, so you can't specify an end time. For example, if you specify 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-windowstarttime.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.OpenSearchService;

             var windowStartTimeProperty = new WindowStartTimeProperty {
                 Hours = 123,
                 Minutes = 123
             };

Synopsis

Constructors

WindowStartTimeProperty()

A custom start time for the off-peak window, in Coordinated Universal Time (UTC).

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

WindowStartTimeProperty()

A custom start time for the off-peak window, in Coordinated Universal Time (UTC).

public WindowStartTimeProperty()
Remarks

The window length will always be 10 hours, so you can't specify an end time. For example, if you specify 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-windowstarttime.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.OpenSearchService;

             var windowStartTimeProperty = new WindowStartTimeProperty {
                 Hours = 123,
                 Minutes = 123
             };

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. The minimum value is 0 and the maximum value is 23.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-windowstarttime.html#cfn-opensearchservice-domain-windowstarttime-hours

Minutes

The start minute of the window, in UTC.

public double Minutes { get; set; }
Property Value

double

Remarks

The minimum value is 0 and the maximum value is 59.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-windowstarttime.html#cfn-opensearchservice-domain-windowstarttime-minutes

Implements

CfnDomain.IWindowStartTimeProperty
Back to top Generated by DocFX