Class: Aws::Pinpoint::Types::Condition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb

Overview

Specifies the conditions to evaluate for an activity in a journey, and how to evaluate those conditions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conditionsArray<Types::SimpleCondition>

The conditions to evaluate for the activity.

Returns:



2548
2549
2550
2551
2552
2553
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2548

class Condition < Struct.new(
  :conditions,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

Specifies how to handle multiple conditions for the activity. For example, if you specify two conditions for an activity, whether both or only one of the conditions must be met for the activity to be performed.

Returns:

  • (String)


2548
2549
2550
2551
2552
2553
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2548

class Condition < Struct.new(
  :conditions,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end