Show / Hide Table of Contents

Class CfnCampaign.OpenHoursProperty

Contains information about open hours.

Inheritance
object
CfnCampaign.OpenHoursProperty
Implements
CfnCampaign.IOpenHoursProperty
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.ConnectCampaignsV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.OpenHoursProperty : CfnCampaign.IOpenHoursProperty
Syntax (vb)
Public Class CfnCampaign.OpenHoursProperty Implements CfnCampaign.IOpenHoursProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.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.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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.html#cfn-connectcampaignsv2-campaign-openhours-dailyhours

Type union: either IResolvable or (either IResolvable or CfnCampaign.IDailyHourProperty)[]

Implements

CfnCampaign.IOpenHoursProperty
Back to top Generated by DocFX