Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-scheduleconfig.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-scheduleconfig.html#cfn-appintegrations-dataintegration-scheduleconfig-firstexecutionfrom

Object

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

string? Object { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-scheduleconfig.html#cfn-appintegrations-dataintegration-scheduleconfig-object

ScheduleExpression

How often the data should be pulled from data source.

string? ScheduleExpression { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-scheduleconfig.html#cfn-appintegrations-dataintegration-scheduleconfig-scheduleexpression

Back to top Generated by DocFX