Class: Aws::Pinpoint::Types::Condition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::Condition
- 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
-
#conditions ⇒ Array<Types::SimpleCondition>
The conditions to evaluate for the activity.
-
#operator ⇒ String
Specifies how to handle multiple conditions for the activity.
Instance Attribute Details
#conditions ⇒ Array<Types::SimpleCondition>
The conditions to evaluate for the activity.
2498 2499 2500 2501 2502 2503 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2498 class Condition < Struct.new( :conditions, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
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.
2498 2499 2500 2501 2502 2503 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 2498 class Condition < Struct.new( :conditions, :operator) SENSITIVE = [] include Aws::Structure end |