Class: Aws::Pinpoint::Types::MetricDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::MetricDimension
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass MetricDimension data as a hash:
{
comparison_operator: "__string", # required
value: 1.0, # required
}
Specifies metric-based criteria for including or excluding endpoints from a segment. These criteria derive from custom metrics that you define for endpoints.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The operator to use when comparing metric values.
-
#value ⇒ Float
The value to compare.
Instance Attribute Details
#comparison_operator ⇒ String
The operator to use when comparing metric values. Valid values are: GREATER_THAN, LESS_THAN, GREATER_THAN_OR_EQUAL, LESS_THAN_OR_EQUAL, and EQUAL.
13211 13212 13213 13214 13215 13216 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 13211 class MetricDimension < Struct.new( :comparison_operator, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value to compare.
13211 13212 13213 13214 13215 13216 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 13211 class MetricDimension < Struct.new( :comparison_operator, :value) SENSITIVE = [] include Aws::Structure end |