Class: Aws::Connect::Types::CurrentMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::CurrentMetric
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains information about a real-time metric. For a description of each metric, see Metrics definitions in the Amazon Connect Administrator Guide.
Only one of either the Name or MetricId is required.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metric_id ⇒ String
Out of the box current metrics or custom metrics can be referenced via this field.
-
#name ⇒ String
The name of the metric.
-
#unit ⇒ String
The Unit parameter is not supported for custom metrics.
Instance Attribute Details
#metric_id ⇒ String
Out of the box current metrics or custom metrics can be referenced via this field. This field is a valid AWS Connect Arn or a UUID.
7435 7436 7437 7438 7439 7440 7441 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7435 class CurrentMetric < Struct.new( :name, :metric_id, :unit) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the metric.
7435 7436 7437 7438 7439 7440 7441 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7435 class CurrentMetric < Struct.new( :name, :metric_id, :unit) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
The unit for the metric.
7435 7436 7437 7438 7439 7440 7441 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7435 class CurrentMetric < Struct.new( :name, :metric_id, :unit) SENSITIVE = [] include Aws::Structure end |