aws-cdk-lib.aws_appintegrations.CfnDataIntegration.ScheduleConfigProperty

interface ScheduleConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.AppIntegrations.CfnDataIntegration.ScheduleConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#CfnDataIntegration_ScheduleConfigProperty
Javasoftware.amazon.awscdk.services.appintegrations.CfnDataIntegration.ScheduleConfigProperty
Pythonaws_cdk.aws_appintegrations.CfnDataIntegration.ScheduleConfigProperty
TypeScript aws-cdk-lib » aws_appintegrations » CfnDataIntegration » ScheduleConfigProperty

The name of the data and how often it should be pulled from the source.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appintegrations as appintegrations } from 'aws-cdk-lib';
const scheduleConfigProperty: appintegrations.CfnDataIntegration.ScheduleConfigProperty = {
  scheduleExpression: 'scheduleExpression',

  // the properties below are optional
  firstExecutionFrom: 'firstExecutionFrom',
  object: 'object',
};

Properties

NameTypeDescription
scheduleExpressionstringHow often the data should be pulled from data source.
firstExecutionFrom?stringThe start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.
object?stringThe name of the object to pull from the data source.

scheduleExpression

Type: string

How often the data should be pulled from data source.


firstExecutionFrom?

Type: string (optional)

The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.


object?

Type: string (optional)

The name of the object to pull from the data source.