Class: Aws::Connect::Types::ThresholdV2
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ThresholdV2
- 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
-
#comparison ⇒ String
The type of comparison.
-
#threshold_value ⇒ Float
The threshold value to compare.
Instance Attribute Details
#comparison ⇒ String
The type of comparison. Currently, “less than” (LT), “less than equal” (LTE), and “greater than” (GT) comparisons are supported.
21031 21032 21033 21034 21035 21036 |
# File 'lib/aws-sdk-connect/types.rb', line 21031 class ThresholdV2 < Struct.new( :comparison, :threshold_value) SENSITIVE = [] include Aws::Structure end |
#threshold_value ⇒ Float
The threshold value to compare.
21031 21032 21033 21034 21035 21036 |
# File 'lib/aws-sdk-connect/types.rb', line 21031 class ThresholdV2 < Struct.new( :comparison, :threshold_value) SENSITIVE = [] include Aws::Structure end |