DataIntegrationScheduleConfig constructor

const DataIntegrationScheduleConfig({
  1. required Input<String> firstExecutionFrom,
  2. required Input<String> object_,
  3. required Input<String> scheduleExpression,
})

Creates a new DataIntegrationScheduleConfig. firstExecutionFrom Start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded. object_ Name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead. scheduleExpression How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).

Implementation

const DataIntegrationScheduleConfig({
  required this.firstExecutionFrom,
  required this.object_,
  required this.scheduleExpression,
});