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.
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 |
#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.
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 |