interface ScheduledTriggerPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.ScheduledTriggerPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_ScheduledTriggerPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.ScheduledTriggerPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.ScheduledTriggerPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » ScheduledTriggerPropertiesProperty |
Specifies the configuration details of a scheduled-trigger flow that you define.
Currently, these settings only apply to the scheduled-trigger type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const scheduledTriggerPropertiesProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.ScheduledTriggerPropertiesProperty = {
dataPullMode: 'dataPullMode',
firstExecutionFrom: 123,
scheduleEndTime: 123,
scheduleExpression: 'scheduleExpression',
scheduleOffset: 123,
scheduleStartTime: 123,
timezone: 'timezone',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. |
| first | number | Specifies the date range for the records to import from the connector in the first flow run. |
| schedule | number | Specifies the scheduled end time for a scheduled-trigger flow. |
| schedule | string | The scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes). |
| schedule | number | Specifies the optional offset that is added to the time interval for a schedule-triggered flow. |
| schedule | number | Specifies the scheduled start time for a scheduled-trigger flow. |
| timezone? | string | Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York. |
dataPullMode?
Type:
string
(optional)
Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run.
firstExecutionFrom?
Type:
number
(optional)
Specifies the date range for the records to import from the connector in the first flow run.
scheduleEndTime?
Type:
number
(optional)
Specifies the scheduled end time for a scheduled-trigger flow.
scheduleExpression?
Type:
string
(optional)
The scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes).
scheduleOffset?
Type:
number
(optional)
Specifies the optional offset that is added to the time interval for a schedule-triggered flow.
scheduleStartTime?
Type:
number
(optional)
Specifies the scheduled start time for a scheduled-trigger flow.
The value must be a date/time value in EPOCH format.
timezone?
Type:
string
(optional)
Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

.NET
Go
Java
Python
TypeScript