Class: Aws::Appflow::Types::TriggerConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::TriggerConfig
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass TriggerConfig data as a hash:
{
trigger_type: "Scheduled", # required, accepts Scheduled, Event, OnDemand
trigger_properties: {
scheduled: {
schedule_expression: "ScheduleExpression", # required
data_pull_mode: "Incremental", # accepts Incremental, Complete
schedule_start_time: Time.now,
schedule_end_time: Time.now,
timezone: "Timezone",
schedule_offset: 1,
first_execution_from: Time.now,
flow_error_deactivation_threshold: 1,
},
},
}
The trigger settings that determine how and when Amazon AppFlow runs the specified flow.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#trigger_properties ⇒ Types::TriggerProperties
Specifies the configuration details of a schedule-triggered flow as defined by the user.
-
#trigger_type ⇒ String
Specifies the type of flow trigger.
Instance Attribute Details
#trigger_properties ⇒ Types::TriggerProperties
Specifies the configuration details of a schedule-triggered flow as
defined by the user. Currently, these settings only apply to the
Scheduled
trigger type.
6795 6796 6797 6798 6799 6800 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 6795 class TriggerConfig < Struct.new( :trigger_type, :trigger_properties) SENSITIVE = [] include Aws::Structure end |
#trigger_type ⇒ String
Specifies the type of flow trigger. This can be OnDemand
,
Scheduled
, or Event
.
6795 6796 6797 6798 6799 6800 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 6795 class TriggerConfig < Struct.new( :trigger_type, :trigger_properties) SENSITIVE = [] include Aws::Structure end |