interface LocalTimeZoneConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.LocalTimeZoneConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_LocalTimeZoneConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.LocalTimeZoneConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.LocalTimeZoneConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » LocalTimeZoneConfigProperty |
The configuration of timezone for recipient.
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 localTimeZoneConfigProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.LocalTimeZoneConfigProperty = {
defaultTimeZone: 'defaultTimeZone',
localTimeZoneDetection: ['localTimeZoneDetection'],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The timezone to use for all recipients. |
| local | string[] | Detects methods for the recipient's timezone. |
defaultTimeZone?
Type:
string
(optional)
The timezone to use for all recipients.
localTimeZoneDetection?
Type:
string[]
(optional)
Detects methods for the recipient's timezone.

.NET
Go
Java
Python
TypeScript