Interface CfnFlow.TriggerConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.TriggerConfigProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.TriggerConfigProperty extends software.amazon.jsii.JsiiSerializable
The trigger settings that determine how and when Amazon AppFlow runs the specified flow.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appflow.*;
 TriggerConfigProperty triggerConfigProperty = TriggerConfigProperty.builder()
         .triggerType("triggerType")
         // the properties below are optional
         .triggerProperties(ScheduledTriggerPropertiesProperty.builder()
                 .scheduleExpression("scheduleExpression")
                 // the properties below are optional
                 .dataPullMode("dataPullMode")
                 .firstExecutionFrom(123)
                 .flowErrorDeactivationThreshold(123)
                 .scheduleEndTime(123)
                 .scheduleOffset(123)
                 .scheduleStartTime(123)
                 .timeZone("timeZone")
                 .build())
         .build();
 

See Also: