interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_connectcampaignsv2.CfnCampaign.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_ScheduleProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.ScheduleProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.ScheduleProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » 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 { aws_connectcampaignsv2 as connectcampaignsv2 } from 'aws-cdk-lib';
const scheduleProperty: connectcampaignsv2.CfnCampaign.ScheduleProperty = {
endTime: 'endTime',
startTime: 'startTime',
// the properties below are optional
refreshFrequency: 'refreshFrequency',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end time of the schedule in UTC. |
| start | string | The start time of the schedule in UTC. |
| refresh | string | The refresh frequency of the campaign. |
endTime
Type:
string
The end time of the schedule in UTC.
startTime
Type:
string
The start time of the schedule in UTC.
refreshFrequency?
Type:
string
(optional)
The refresh frequency of the campaign.

.NET
Go
Java
Python
TypeScript