interface TimeWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.TimeWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_TimeWindowProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.TimeWindowProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.TimeWindowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » TimeWindowProperty |
Contains information about a time window.
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 timeWindowProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.TimeWindowProperty = {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| open | IResolvable | Open | The open hours configuration. |
| restricted | IResolvable | Restricted | The restricted periods configuration. |
openHours?
Type:
IResolvable | Open
(optional)
The open hours configuration.
restrictedPeriods?
Type:
IResolvable | Restricted
(optional)
The restricted periods configuration.

.NET
Go
Java
Python
TypeScript