Class: Aws::Connect::Types::Threshold

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


21011
21012
21013
21014
21015
21016
# File 'lib/aws-sdk-connect/types.rb', line 21011

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

#threshold_valueFloat

The threshold value to compare.

Returns:

  • (Float)


21011
21012
21013
21014
21015
21016
# File 'lib/aws-sdk-connect/types.rb', line 21011

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