Class CfnCampaign.OpenHoursProperty
Contains information about open hours.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ConnectCampaignsV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.OpenHoursProperty : CfnCampaign.IOpenHoursProperty
Syntax (vb)
Public Class CfnCampaign.OpenHoursProperty Implements CfnCampaign.IOpenHoursProperty
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.ConnectCampaignsV2;
var openHoursProperty = new OpenHoursProperty {
DailyHours = new [] { new DailyHourProperty {
Key = "key",
Value = new [] { new TimeRangeProperty {
EndTime = "endTime",
StartTime = "startTime"
} }
} }
};
Synopsis
Constructors
| OpenHoursProperty() | Contains information about open hours. |
Properties
| DailyHours | The daily hours configuration. |
Constructors
OpenHoursProperty()
Contains information about open hours.
public OpenHoursProperty()
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.ConnectCampaignsV2;
var openHoursProperty = new OpenHoursProperty {
DailyHours = new [] { new DailyHourProperty {
Key = "key",
Value = new [] { new TimeRangeProperty {
EndTime = "endTime",
StartTime = "startTime"
} }
} }
};
Properties
DailyHours
The daily hours configuration.
public object DailyHours { get; set; }