interface CommunicationTimeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.CommunicationTimeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_CommunicationTimeConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.CommunicationTimeConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.CommunicationTimeConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » CfnCampaignPropsMixin » 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/cfn-property-mixins';
const communicationTimeConfigProperty: connectcampaignsv2.CfnCampaignPropsMixin.CommunicationTimeConfigProperty = {
email: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
}],
},
},
localTimeZoneConfig: {
defaultTimeZone: 'defaultTimeZone',
localTimeZoneDetection: ['localTimeZoneDetection'],
},
sms: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
}],
},
},
telephony: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
}],
},
},
whatsApp: {
openHours: {
dailyHours: [{
key: 'key',
value: [{
endTime: 'endTime',
startTime: 'startTime',
}],
}],
},
restrictedPeriods: {
restrictedPeriodList: [{
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| email? | IResolvable | Time | The communication time configuration for the email channel subtype. |
| local | IResolvable | Local | The local timezone configuration. |
| sms? | IResolvable | Time | The communication time configuration for the SMS channel subtype. |
| telephony? | IResolvable | Time | The communication time configuration for the telephony channel subtype. |
| whats | IResolvable | Time | The communication time configuration for the WhatsApp channel subtype. |
email?
Type:
IResolvable | Time
(optional)
The communication time configuration for the email channel subtype.
localTimeZoneConfig?
Type:
IResolvable | Local
(optional)
The local timezone configuration.
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.
whatsApp?
Type:
IResolvable | Time
(optional)
The communication time configuration for the WhatsApp channel subtype.

.NET
Go
Java
Python
TypeScript