Interface ScheduleConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScheduleConfiguration.Builder,ScheduleConfiguration>,SdkBuilder<ScheduleConfiguration.Builder,ScheduleConfiguration>,SdkPojo
- Enclosing class:
- ScheduleConfiguration
public static interface ScheduleConfiguration.Builder extends SdkPojo, CopyableBuilder<ScheduleConfiguration.Builder,ScheduleConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScheduleConfiguration.BuilderfirstExecutionFrom(String firstExecutionFrom)The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.ScheduleConfiguration.Builderobject(String object)The name of the object to pull from the data source.ScheduleConfiguration.BuilderscheduleExpression(String scheduleExpression)How often the data should be pulled from data source.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
firstExecutionFrom
ScheduleConfiguration.Builder firstExecutionFrom(String firstExecutionFrom)
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.
- Parameters:
firstExecutionFrom- The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
object
ScheduleConfiguration.Builder object(String object)
The name of the object to pull from the data source.
- Parameters:
object- The name of the object to pull from the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleExpression
ScheduleConfiguration.Builder scheduleExpression(String scheduleExpression)
How often the data should be pulled from data source.
- Parameters:
scheduleExpression- How often the data should be pulled from data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-