interface TimeWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.TimeWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_TimeWindowProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.TimeWindowProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.TimeWindowProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » 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 { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
const timeWindowProperty: connectcampaignsv2.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