Class: Aws::Pinpoint::Types::MetricDimension

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pinpoint/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

Instance Attribute Details

#comparison_operatorString

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.

Returns:

  • (String)


9579
9580
9581
9582
9583
9584
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 9579

class MetricDimension < Struct.new(
  :comparison_operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

The value to compare.

Returns:

  • (Float)


9579
9580
9581
9582
9583
9584
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 9579

class MetricDimension < Struct.new(
  :comparison_operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end