Class: Aws::Connect::Types::ThresholdV2

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

Contains information about the threshold for service level metrics.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#comparisonString

The type of comparison. Only "less than" (LT) comparisons are supported.

Returns:

  • (String)


18897
18898
18899
18900
18901
18902
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18897

class ThresholdV2 < Struct.new(
  :comparison,
  :threshold_value)
  SENSITIVE = []
  include Aws::Structure
end

#threshold_valueFloat

The threshold value to compare.

Returns:

  • (Float)


18897
18898
18899
18900
18901
18902
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18897

class ThresholdV2 < Struct.new(
  :comparison,
  :threshold_value)
  SENSITIVE = []
  include Aws::Structure
end