Class: Aws::Pinpoint::Types::MetricDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::MetricDimension
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
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.
9602 9603 9604 9605 9606 9607 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9602 class MetricDimension < Struct.new( :comparison_operator, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value to compare.
9602 9603 9604 9605 9606 9607 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9602 class MetricDimension < Struct.new( :comparison_operator, :value) SENSITIVE = [] include Aws::Structure end |