Interface CfnIntegration.TriggerConfigProperty

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

@Stability(Stable) public static interface CfnIntegration.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.customerprofiles.*;
 TriggerConfigProperty triggerConfigProperty = TriggerConfigProperty.builder()
         .triggerType("triggerType")
         // the properties below are optional
         .triggerProperties(TriggerPropertiesProperty.builder()
                 .scheduled(ScheduledTriggerPropertiesProperty.builder()
                         .scheduleExpression("scheduleExpression")
                         // the properties below are optional
                         .dataPullMode("dataPullMode")
                         .firstExecutionFrom(123)
                         .scheduleEndTime(123)
                         .scheduleOffset(123)
                         .scheduleStartTime(123)
                         .timezone("timezone")
                         .build())
                 .build())
         .build();