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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIntegration.TriggerConfigProperty
static final class
An implementation forCfnIntegration.TriggerConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTriggerType
Specifies the type of flow trigger.It can be OnDemand, Scheduled, or Event.
-
getTriggerProperties
Specifies the configuration details of a schedule-triggered flow that you define.Currently, these settings only apply to the Scheduled trigger type.
-
builder
-