Interface CfnDataIntegrationPropsMixin.IScheduleConfigProperty
The name of the data and how often it should be pulled from the source.
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDataIntegrationPropsMixin.IScheduleConfigProperty
Syntax (vb)
Public Interface CfnDataIntegrationPropsMixin.IScheduleConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins;
var scheduleConfigProperty = new ScheduleConfigProperty {
FirstExecutionFrom = "firstExecutionFrom",
Object = "object",
ScheduleExpression = "scheduleExpression"
};
Synopsis
Properties
| FirstExecutionFrom | 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 | The name of the object to pull from the data source. |
| ScheduleExpression | How often the data should be pulled from data source. |
Properties
FirstExecutionFrom
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.
string? FirstExecutionFrom { get; }
Property Value
Remarks
Object
The name of the object to pull from the data source.
string? Object { get; }
Property Value
Remarks
ScheduleExpression
How often the data should be pulled from data source.
string? ScheduleExpression { get; }