Show / Hide Table of Contents

Class CfnDataIntegration.ScheduleConfigProperty

The name of the data and how often it should be pulled from the source.

Inheritance
object
CfnDataIntegration.ScheduleConfigProperty
Implements
CfnDataIntegration.IScheduleConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataIntegration.ScheduleConfigProperty : CfnDataIntegration.IScheduleConfigProperty
Syntax (vb)
Public Class CfnDataIntegration.ScheduleConfigProperty Implements CfnDataIntegration.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.AWS.AppIntegrations;

             var scheduleConfigProperty = new ScheduleConfigProperty {
                 ScheduleExpression = "scheduleExpression",

                 // the properties below are optional
                 FirstExecutionFrom = "firstExecutionFrom",
                 Object = "object"
             };

Synopsis

Constructors

ScheduleConfigProperty()

The name of the data and how often it should be pulled from the 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.

Object

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

ScheduleExpression

How often the data should be pulled from data source.

Constructors

ScheduleConfigProperty()

The name of the data and how often it should be pulled from the source.

public ScheduleConfigProperty()
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.AWS.AppIntegrations;

             var scheduleConfigProperty = new ScheduleConfigProperty {
                 ScheduleExpression = "scheduleExpression",

                 // the properties below are optional
                 FirstExecutionFrom = "firstExecutionFrom",
                 Object = "object"
             };

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.

public string? FirstExecutionFrom { get; set; }
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.

public string? Object { get; set; }
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.

public string ScheduleExpression { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataIntegration.IScheduleConfigProperty
Back to top Generated by DocFX