interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_ScheduleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.ScheduleProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.ScheduleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » 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 { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
const scheduleProperty: connectcampaignsv2.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