Interface CfnIntegration.TriggerPropertiesProperty

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

@Stability(Stable) public static interface CfnIntegration.TriggerPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Specifies the configuration details that control the trigger for a flow.

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

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.*;
 TriggerPropertiesProperty triggerPropertiesProperty = 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();