Class: Aws::Pinpoint::Types::StartCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::StartCondition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass StartCondition data as a hash:
{
description: "__string",
segment_start_condition: {
segment_id: "__string", # required
},
}
Specifies the conditions for the first activity in a journey. This activity and its conditions determine which users are participants in a journey.
Instance Attribute Summary collapse
-
#description ⇒ String
The custom description of the condition.
-
#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.
14598 14599 14600 14601 14602 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14598 class StartCondition < Struct.new( :description, :segment_start_condition) 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.
14598 14599 14600 14601 14602 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14598 class StartCondition < Struct.new( :description, :segment_start_condition) include Aws::Structure end |