FlowTriggerConfig constructor
const
FlowTriggerConfig({
- Input<
FlowTriggerConfigTriggerProperties?> ? triggerProperties, - 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,
});