Class: Aws::Pinpoint::Types::StartCondition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#descriptionString

The custom description of the condition.

Returns:

  • (String)


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_conditionTypes::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