You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Appflow::Types::TriggerConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::TriggerConfig
- Defined in:
- (unknown)
Overview
Note:
When passing TriggerConfig as input to an Aws::Client method, you can use a vanilla 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",
},
},
}
The trigger settings that determine how and when Amazon AppFlow runs the specified flow.
Returned by:
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.
#trigger_type ⇒ String
Specifies the type of flow trigger. This can be OnDemand
, Scheduled
,
or Event
.
Possible values:
- Scheduled
- Event
- OnDemand