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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataIntegration.ScheduleConfigPropertystatic final classAn implementation forCfnDataIntegration.ScheduleConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.default StringThe name of the object to pull from the data source.How often the data should be pulled from data source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScheduleExpression
How often the data should be pulled from data source. -
getFirstExecutionFrom
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. -
getObject
The name of the object to pull from the data source. -
builder
-