Class: Aws::Pinpoint::Types::EventStartCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::EventStartCondition
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass EventStartCondition data as a hash:
{
event_filter: {
dimensions: { # required
attributes: {
"__string" => {
attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE, CONTAINS, BEFORE, AFTER, BETWEEN, ON
values: ["__string"], # required
},
},
event_type: {
dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
values: ["__string"], # required
},
metrics: {
"__string" => {
comparison_operator: "__string", # required
value: 1.0, # required
},
},
},
filter_type: "SYSTEM", # required, accepts SYSTEM, ENDPOINT
},
segment_id: "__string",
}
Specifies the settings for an event that causes a journey activity to start.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_filter ⇒ Types::EventFilter
Specifies the settings for an event that causes a campaign to be sent or a journey activity to be performed.
-
#segment_id ⇒ String
Instance Attribute Details
#event_filter ⇒ Types::EventFilter
Specifies the settings for an event that causes a campaign to be sent or a journey activity to be performed.
8132 8133 8134 8135 8136 8137 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 8132 class EventStartCondition < Struct.new( :event_filter, :segment_id) SENSITIVE = [] include Aws::Structure end |
#segment_id ⇒ String
8132 8133 8134 8135 8136 8137 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 8132 class EventStartCondition < Struct.new( :event_filter, :segment_id) SENSITIVE = [] include Aws::Structure end |