Interface CfnDataIntegration.ScheduleConfigProperty

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

@Stability(Stable) public static interface CfnDataIntegration.ScheduleConfigProperty extends software.amazon.jsii.JsiiSerializable
The name of the data and how often it should be pulled from the source.

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.appintegrations.*;
 ScheduleConfigProperty scheduleConfigProperty = ScheduleConfigProperty.builder()
         .scheduleExpression("scheduleExpression")
         // the properties below are optional
         .firstExecutionFrom("firstExecutionFrom")
         .object("object")
         .build();