interface ScheduleConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppIntegrations.CfnDataIntegration.ScheduleConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#CfnDataIntegration_ScheduleConfigProperty |
Java | software.amazon.awscdk.services.appintegrations.CfnDataIntegration.ScheduleConfigProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
schedule | string | How often the data should be pulled from data source. |
first | string | 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? | string | The 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.