Show / Hide Table of Contents

Interface CfnFlow.ITriggerConfigProperty

The trigger settings that determine how and when Amazon AppFlow runs the specified flow.

Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnFlow.ITriggerConfigProperty
Syntax (vb)
Public Interface CfnFlow.ITriggerConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-triggerconfig.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.AppFlow;

             var triggerConfigProperty = new TriggerConfigProperty {
                 TriggerType = "triggerType",

                 // the properties below are optional
                 TriggerProperties = new ScheduledTriggerPropertiesProperty {
                     ScheduleExpression = "scheduleExpression",

                     // the properties below are optional
                     DataPullMode = "dataPullMode",
                     FirstExecutionFrom = 123,
                     FlowErrorDeactivationThreshold = 123,
                     ScheduleEndTime = 123,
                     ScheduleOffset = 123,
                     ScheduleStartTime = 123,
                     TimeZone = "timeZone"
                 }
             };

Synopsis

Properties

TriggerProperties

Specifies the configuration details of a schedule-triggered flow as defined by the user.

TriggerType

Specifies the type of flow trigger.

Properties

TriggerProperties

Specifies the configuration details of a schedule-triggered flow as defined by the user.

object? TriggerProperties { get; }
Property Value

object

Remarks

Currently, these settings only apply to the Scheduled trigger type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-triggerconfig.html#cfn-appflow-flow-triggerconfig-triggerproperties

Type union: either IResolvable or CfnFlow.IScheduledTriggerPropertiesProperty

TriggerType

Specifies the type of flow trigger.

string TriggerType { get; }
Property Value

string

Remarks

This can be OnDemand , Scheduled , or Event .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-triggerconfig.html#cfn-appflow-flow-triggerconfig-triggertype

Back to top Generated by DocFX