Class: Aws::Appflow::Types::TriggerConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Appflow::Types::TriggerConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appflow/types.rb
 
Overview
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.
      5491 5492 5493 5494 5495 5496  | 
    
      # File 'lib/aws-sdk-appflow/types.rb', line 5491 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`.
      5491 5492 5493 5494 5495 5496  | 
    
      # File 'lib/aws-sdk-appflow/types.rb', line 5491 class TriggerConfig < Struct.new( :trigger_type, :trigger_properties) SENSITIVE = [] include Aws::Structure end  |