Class FlowTriggerConfigTriggerPropertiesScheduledArgs


  • public final class FlowTriggerConfigTriggerPropertiesScheduledArgs
    extends com.pulumi.resources.ResourceArgs
    • Method Detail

      • dataPullMode

        public java.util.Optional<com.pulumi.core.Output<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<com.pulumi.core.Output<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<com.pulumi.core.Output<java.lang.String>> scheduleEndTime()
        Returns:
        Scheduled end time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
      • scheduleExpression

        public com.pulumi.core.Output<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<com.pulumi.core.Output<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<com.pulumi.core.Output<java.lang.String>> scheduleStartTime()
        Returns:
        Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
      • timezone

        public java.util.Optional<com.pulumi.core.Output<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());
         
             }
         }
         
         
        <!--End PulumiCodeChooser -->