FlowTriggerConfig constructor

const FlowTriggerConfig({
  1. Input<FlowTriggerConfigTriggerProperties?>? triggerProperties,
  2. required Input<String> triggerType,
})

Creates a new FlowTriggerConfig. triggerProperties Configuration details of a schedule-triggered flow as defined by the user. Currently, these settings only apply to the Scheduled trigger type. See the trigger_config.trigger_properties Block for details. triggerType Type of flow trigger. Valid values are Scheduled, Event, and OnDemand.

Implementation

const FlowTriggerConfig({
  this.triggerProperties,
  required this.triggerType,
});