interface CommunicationTimeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_connectcampaignsv2.CfnCampaign.CommunicationTimeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_CommunicationTimeConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.CommunicationTimeConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.CommunicationTimeConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » CommunicationTimeConfigProperty |
Communication time configuration for an outbound campaign.
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-lib';
const communicationTimeConfigProperty: connectcampaignsv2.CfnCampaign.CommunicationTimeConfigProperty = {
localTimeZoneConfig: {
defaultTimeZone: 'defaultTimeZone',
localTimeZoneDetection: ['localTimeZoneDetection'],
},
// the properties below are optional
email: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
// the properties below are optional
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
startDate: 'startDate',
// the properties below are optional
name: 'name',
}],
},
},
sms: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
// the properties below are optional
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
startDate: 'startDate',
// the properties below are optional
name: 'name',
}],
},
},
telephony: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
// the properties below are optional
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
startDate: 'startDate',
// the properties below are optional
name: 'name',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| local | IResolvable | Local | The local timezone configuration. |
| email? | IResolvable | Time | The communication time configuration for the email channel subtype. |
| sms? | IResolvable | Time | The communication time configuration for the SMS channel subtype. |
| telephony? | IResolvable | Time | The communication time configuration for the telephony channel subtype. |
localTimeZoneConfig
Type:
IResolvable | Local
The local timezone configuration.
email?
Type:
IResolvable | Time
(optional)
The communication time configuration for the email channel subtype.
sms?
Type:
IResolvable | Time
(optional)
The communication time configuration for the SMS channel subtype.
telephony?
Type:
IResolvable | Time
(optional)
The communication time configuration for the telephony channel subtype.

.NET
Go
Java
Python
TypeScript