interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_ScheduleProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.ScheduleProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.ScheduleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » ScheduleProperty |
Contains the schedule configuration.
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 scheduleProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.ScheduleProperty = {
endTime: 'endTime',
refreshFrequency: 'refreshFrequency',
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end time of the schedule in UTC. |
| refresh | string | The refresh frequency of the campaign. |
| start | string | The start time of the schedule in UTC. |
endTime?
Type:
string
(optional)
The end time of the schedule in UTC.
refreshFrequency?
Type:
string
(optional)
The refresh frequency of the campaign.
startTime?
Type:
string
(optional)
The start time of the schedule in UTC.

.NET
Go
Java
Python
TypeScript