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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataIntegration.ScheduleConfigProperty
static final class
An implementation forCfnDataIntegration.ScheduleConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.default String
The 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.- See Also:
-
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.- See Also:
-
getObject
The name of the object to pull from the data source.- See Also:
-
builder
-