Class: Aws::Pinpoint::Types::EventCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::EventCondition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass EventCondition data as a hash:
{
dimensions: { # required
attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
},
event_type: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
metrics: {
"__string" => {
comparison_operator: "__string", # required
value: 1.0, # required
},
},
},
message_activity: "__string",
}
Specifies the conditions to evaluate for an event that applies to an activity in a journey.
Instance Attribute Summary collapse
-
#dimensions ⇒ Types::EventDimensions
The dimensions for the event filter to use for the activity.
-
#message_activity ⇒ String
The message identifier (message_id) for the message to use when determining whether message events meet the condition.
Instance Attribute Details
#dimensions ⇒ Types::EventDimensions
The dimensions for the event filter to use for the activity.
6953 6954 6955 6956 6957 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 6953 class EventCondition < Struct.new( :dimensions, :message_activity) include Aws::Structure end |
#message_activity ⇒ String
The message identifier (message_id) for the message to use when determining whether message events meet the condition.
6953 6954 6955 6956 6957 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 6953 class EventCondition < Struct.new( :dimensions, :message_activity) include Aws::Structure end |