Class CfnCampaignPropsMixin.OpenHoursProperty
Contains information about open hours.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.OpenHoursProperty : CfnCampaignPropsMixin.IOpenHoursProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.OpenHoursProperty Implements CfnCampaignPropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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; }