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:



2558
2559
2560
2561
2562
2563
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2558

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)


2558
2559
2560
2561
2562
2563
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2558

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