aws-cdk-lib.aws_customerprofiles.CfnIntegration.ScheduledTriggerPropertiesProperty

interface ScheduledTriggerPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnIntegration.ScheduledTriggerPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnIntegration_ScheduledTriggerPropertiesProperty
Javasoftware.amazon.awscdk.services.customerprofiles.CfnIntegration.ScheduledTriggerPropertiesProperty
Pythonaws_cdk.aws_customerprofiles.CfnIntegration.ScheduledTriggerPropertiesProperty
TypeScript aws-cdk-lib » aws_customerprofiles » CfnIntegration » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const scheduledTriggerPropertiesProperty: customerprofiles.CfnIntegration.ScheduledTriggerPropertiesProperty = {
  scheduleExpression: 'scheduleExpression',

  // the properties below are optional
  dataPullMode: 'dataPullMode',
  firstExecutionFrom: 123,
  scheduleEndTime: 123,
  scheduleOffset: 123,
  scheduleStartTime: 123,
  timezone: 'timezone',
};

Properties

NameTypeDescription
scheduleExpressionstringThe scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes).
dataPullMode?stringSpecifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run.
firstExecutionFrom?numberSpecifies the date range for the records to import from the connector in the first flow run.
scheduleEndTime?numberSpecifies the scheduled end time for a scheduled-trigger flow.
scheduleOffset?numberSpecifies the optional offset that is added to the time interval for a schedule-triggered flow.
scheduleStartTime?numberSpecifies the scheduled start time for a scheduled-trigger flow.
timezone?stringSpecifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

scheduleExpression

Type: string

The scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes).


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.


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.


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.