Class: Aws::Connect::Types::ContactMetricResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ContactMetricResult
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains the result of a requested metric for the contact. This object is returned as part of the GetContactMetrics response and includes both the metric name and its calculated value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the metric that was retrieved.
-
#value ⇒ Types::ContactMetricValue
The calculated value for the requested metric.
Instance Attribute Details
#name ⇒ String
The name of the metric that was retrieved. This corresponds to the metric name specified in the request, such as POSITION_IN_QUEUE or ESTIMATED_WAIT_TIME.
4519 4520 4521 4522 4523 4524 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 4519 class ContactMetricResult < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::ContactMetricValue
The calculated value for the requested metric. This object contains the numeric result based on the contact's current state in the queue.
4519 4520 4521 4522 4523 4524 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 4519 class ContactMetricResult < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |