interface DailyHourProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.DailyHourProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_DailyHourProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.DailyHourProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.DailyHourProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » DailyHourProperty |
The daily hours configuration.
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 dailyHourProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.DailyHourProperty = {
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key for DailyHour. |
| value? | IResolvable | (IResolvable | Time)[] | The value for DailyHour. |
key?
Type:
string
(optional)
The key for DailyHour.
value?
Type:
IResolvable | (IResolvable | Time)[]
(optional)
The value for DailyHour.

.NET
Go
Java
Python
TypeScript