Class: Aws::Pinpoint::Types::StartCondition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::StartCondition
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Specifies the conditions for the first activity in a journey. This activity and its conditions determine which users are participants in a journey.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The custom description of the condition.
 - 
  
    
      #event_start_condition  ⇒ Types::EventStartCondition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the settings for an event that causes a journey activity to start.
 - 
  
    
      #segment_start_condition  ⇒ Types::SegmentCondition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The segment that’s associated with the first activity in the journey.
 
Instance Attribute Details
#description ⇒ String
The custom description of the condition.
      11826 11827 11828 11829 11830 11831 11832  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 11826 class StartCondition < Struct.new( :description, :event_start_condition, :segment_start_condition) SENSITIVE = [] include Aws::Structure end  | 
  
#event_start_condition ⇒ Types::EventStartCondition
Specifies the settings for an event that causes a journey activity to start.
      11826 11827 11828 11829 11830 11831 11832  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 11826 class StartCondition < Struct.new( :description, :event_start_condition, :segment_start_condition) SENSITIVE = [] include Aws::Structure end  | 
  
#segment_start_condition ⇒ Types::SegmentCondition
The segment that’s associated with the first activity in the journey. This segment determines which users are participants in the journey.
      11826 11827 11828 11829 11830 11831 11832  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 11826 class StartCondition < Struct.new( :description, :event_start_condition, :segment_start_condition) SENSITIVE = [] include Aws::Structure end  |