Class CfnCampaignPropsMixin.DailyHourProperty
The daily hours configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.DailyHourProperty : CfnCampaignPropsMixin.IDailyHourProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.DailyHourProperty Implements CfnCampaignPropsMixin.IDailyHourProperty
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 dailyHourProperty = new DailyHourProperty {
Key = "key",
Value = new [] { new TimeRangeProperty {
EndTime = "endTime",
StartTime = "startTime"
} }
};
Synopsis
Constructors
| DailyHourProperty() | The daily hours configuration. |
Properties
| Key | The key for DailyHour. |
| Value | The value for DailyHour. |
Constructors
DailyHourProperty()
The daily hours configuration.
public DailyHourProperty()
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 dailyHourProperty = new DailyHourProperty {
Key = "key",
Value = new [] { new TimeRangeProperty {
EndTime = "endTime",
StartTime = "startTime"
} }
};
Properties
Key
The key for DailyHour.
public string? Key { get; set; }
Property Value
Remarks
Value
The value for DailyHour.
public object? Value { get; set; }