Package com.pulumi.aws.appflow.outputs
Class FlowTriggerConfigTriggerPropertiesScheduled
- java.lang.Object
-
- com.pulumi.aws.appflow.outputs.FlowTriggerConfigTriggerPropertiesScheduled
-
public final class FlowTriggerConfigTriggerPropertiesScheduled extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FlowTriggerConfigTriggerPropertiesScheduled.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FlowTriggerConfigTriggerPropertiesScheduled.Builder
builder()
static FlowTriggerConfigTriggerPropertiesScheduled.Builder
builder(FlowTriggerConfigTriggerPropertiesScheduled defaults)
java.util.Optional<java.lang.String>
dataPullMode()
java.util.Optional<java.lang.String>
firstExecutionFrom()
java.util.Optional<java.lang.String>
scheduleEndTime()
java.lang.String
scheduleExpression()
java.util.Optional<java.lang.Integer>
scheduleOffset()
java.util.Optional<java.lang.String>
scheduleStartTime()
java.util.Optional<java.lang.String>
timezone()
-
-
-
Method Detail
-
dataPullMode
public java.util.Optional<java.lang.String> dataPullMode()
- Returns:
- Whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run. Valid values are `Incremental` and `Complete`.
-
firstExecutionFrom
public java.util.Optional<java.lang.String> firstExecutionFrom()
- Returns:
- Date range for the records to import from the connector in the first flow run. Must be a valid RFC3339 timestamp.
-
scheduleEndTime
public java.util.Optional<java.lang.String> scheduleEndTime()
- Returns:
- Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
-
scheduleExpression
public java.lang.String scheduleExpression()
- Returns:
- Scheduling expression that determines the rate at which the schedule will run, for example `rate(5minutes)`.
-
scheduleOffset
public java.util.Optional<java.lang.Integer> scheduleOffset()
- Returns:
- Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
-
scheduleStartTime
public java.util.Optional<java.lang.String> scheduleStartTime()
- Returns:
- Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
-
timezone
public java.util.Optional<java.lang.String> timezone()
- Returns:
- Time zone used when referring to the date and time of a scheduled-triggered flow, such as `America/New_York`.
<!--Start PulumiCodeChooser -->
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.appflow.Flow; import com.pulumi.aws.appflow.FlowArgs; import com.pulumi.aws.appflow.inputs.FlowTriggerConfigArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new Flow("example", FlowArgs.builder() .triggerConfig(FlowTriggerConfigArgs.builder() .scheduled(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference)) .build()) .build()); } }
-
builder
public static FlowTriggerConfigTriggerPropertiesScheduled.Builder builder()
-
builder
public static FlowTriggerConfigTriggerPropertiesScheduled.Builder builder(FlowTriggerConfigTriggerPropertiesScheduled defaults)
-
-