Class: Aws::Connect::Types::FilterV2
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::FilterV2
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains the filter to apply when retrieving metrics with the GetMetricDataV2 API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter_key ⇒ String
The key to use for filtering data.
-
#filter_values ⇒ Array<String>
The identifiers to use for filtering data.
Instance Attribute Details
#filter_key ⇒ String
The key to use for filtering data. For example, QUEUE
,
ROUTING_PROFILE, AGENT
, CHANNEL
, AGENT_HIERARCHY_LEVEL_ONE
,
AGENT_HIERARCHY_LEVEL_TWO
, AGENT_HIERARCHY_LEVEL_THREE
,
AGENT_HIERARCHY_LEVEL_FOUR
, AGENT_HIERARCHY_LEVEL_FIVE
. There
must be at least 1 key and a maximum 5 keys.
9520 9521 9522 9523 9524 9525 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9520 class FilterV2 < Struct.new( :filter_key, :filter_values) SENSITIVE = [] include Aws::Structure end |
#filter_values ⇒ Array<String>
The identifiers to use for filtering data. For example, if you have
a filter key of QUEUE
, you would add queue IDs or ARNs in
FilterValues
.
9520 9521 9522 9523 9524 9525 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9520 class FilterV2 < Struct.new( :filter_key, :filter_values) SENSITIVE = [] include Aws::Structure end |