Class CfnHoursOfOperation.HoursOfOperationOverrideProperty
Information about the hours of operations override.
Inheritance
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HoursOfOperationOverrideProperty : Object, CfnHoursOfOperation.IHoursOfOperationOverrideProperty
Syntax (vb)
Public Class HoursOfOperationOverrideProperty
Inherits Object
Implements CfnHoursOfOperation.IHoursOfOperationOverrideProperty
Remarks
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.Connect;
var hoursOfOperationOverrideProperty = new HoursOfOperationOverrideProperty {
EffectiveFrom = "effectiveFrom",
EffectiveTill = "effectiveTill",
OverrideConfig = new [] { new HoursOfOperationOverrideConfigProperty {
Day = "day",
EndTime = new OverrideTimeSliceProperty {
Hours = 123,
Minutes = 123
},
StartTime = new OverrideTimeSliceProperty {
Hours = 123,
Minutes = 123
}
} },
OverrideName = "overrideName",
// the properties below are optional
HoursOfOperationOverrideId = "hoursOfOperationOverrideId",
OverrideDescription = "overrideDescription"
};
Synopsis
Constructors
Hours |
Properties
Effective |
The date from which the hours of operation override would be effective. |
Effective |
The date till which the hours of operation override would be effective. |
Hours |
The identifier for the hours of operation override. |
Override |
Configuration information for the hours of operation override: day, start time, and end time. |
Override |
The description of the hours of operation override. |
Override |
The name of the hours of operation override. |
Constructors
HoursOfOperationOverrideProperty()
public HoursOfOperationOverrideProperty()
Properties
EffectiveFrom
The date from which the hours of operation override would be effective.
public string EffectiveFrom { get; set; }
Property Value
System.
Remarks
EffectiveTill
The date till which the hours of operation override would be effective.
public string EffectiveTill { get; set; }
Property Value
System.
Remarks
HoursOfOperationOverrideId
The identifier for the hours of operation override.
public string HoursOfOperationOverrideId { get; set; }
Property Value
System.
Remarks
OverrideConfig
Configuration information for the hours of operation override: day, start time, and end time.
public object OverrideConfig { get; set; }
Property Value
System.
Remarks
OverrideDescription
The description of the hours of operation override.
public string OverrideDescription { get; set; }
Property Value
System.
Remarks
OverrideName
The name of the hours of operation override.
public string OverrideName { get; set; }
Property Value
System.