interface OpenHoursProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.OpenHoursProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_OpenHoursProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.OpenHoursProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.OpenHoursProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » OpenHoursProperty |
Contains information about open hours.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
const openHoursProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.OpenHoursProperty = {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| daily | IResolvable | (IResolvable | Daily)[] | The daily hours configuration. |
dailyHours?
Type:
IResolvable | (IResolvable | Daily)[]
(optional)
The daily hours configuration.

.NET
Go
Java
Python
TypeScript