interface ScheduleConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins.CfnDataIntegrationPropsMixin.ScheduleConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappintegrations/mixins#CfnDataIntegrationPropsMixin_ScheduleConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appintegrations.mixins.CfnDataIntegrationPropsMixin.ScheduleConfigProperty |
Python | aws_cdk.mixins_preview.aws_appintegrations.mixins.CfnDataIntegrationPropsMixin.ScheduleConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appintegrations » mixins » CfnDataIntegrationPropsMixin » 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 { mixins as appintegrations_mixins } from '@aws-cdk/mixins-preview/aws-appintegrations';
const scheduleConfigProperty: appintegrations_mixins.CfnDataIntegrationPropsMixin.ScheduleConfigProperty = {
firstExecutionFrom: 'firstExecutionFrom',
object: 'object',
scheduleExpression: 'scheduleExpression',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| schedule | 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.
scheduleExpression?
Type:
string
(optional)
How often the data should be pulled from data source.

.NET
Go
Java
Python
TypeScript