Class: Aws::Appflow::Types::TriggerProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::TriggerProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass TriggerProperties data as a hash:
{
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,
},
}
Specifies the configuration details that control the trigger for a flow. Currently, these settings only apply to the ‘Scheduled` trigger type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scheduled ⇒ Types::ScheduledTriggerProperties
Specifies the configuration details of a schedule-triggered flow as defined by the user.
Instance Attribute Details
#scheduled ⇒ Types::ScheduledTriggerProperties
Specifies the configuration details of a schedule-triggered flow as defined by the user.
4793 4794 4795 4796 4797 |
# File 'lib/aws-sdk-appflow/types.rb', line 4793 class TriggerProperties < Struct.new( :scheduled) SENSITIVE = [] include Aws::Structure end |