interface ScheduleConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppIntegrations.CfnDataIntegrationPropsMixin.ScheduleConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappintegrations#CfnDataIntegrationPropsMixin_ScheduleConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appintegrations.CfnDataIntegrationPropsMixin.ScheduleConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appintegrations.CfnDataIntegrationPropsMixin.ScheduleConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appintegrations » 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 { aws_appintegrations as appintegrations } from '@aws-cdk/cfn-property-mixins';
const scheduleConfigProperty: appintegrations.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