Class: Aws::Connect::Types::MetricCalculation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::MetricCalculation
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains the formula and component metrics that define a custom metric calculation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#calculation ⇒ String
The formula expression that defines how the metric is calculated.
-
#calculation_components ⇒ Array<Types::CalculationComponent>
The list of component metrics referenced in the calculation formula.
Instance Attribute Details
#calculation ⇒ String
The formula expression that defines how the metric is calculated.
Uses component aliases (for example, 100 * SUM(M1) / SUM(M2)).
25255 25256 25257 25258 25259 25260 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 25255 class MetricCalculation < Struct.new( :calculation_components, :calculation) SENSITIVE = [] include Aws::Structure end |
#calculation_components ⇒ Array<Types::CalculationComponent>
The list of component metrics referenced in the calculation formula. Each component has an alias used in the formula expression.
25255 25256 25257 25258 25259 25260 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 25255 class MetricCalculation < Struct.new( :calculation_components, :calculation) SENSITIVE = [] include Aws::Structure end |