Class: Aws::Connect::Types::FilterV2

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#filter_keyString

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.

Returns:

  • (String)


7069
7070
7071
7072
7073
7074
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7069

class FilterV2 < Struct.new(
  :filter_key,
  :filter_values)
  SENSITIVE = []
  include Aws::Structure
end

#filter_valuesArray<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.

Returns:

  • (Array<String>)


7069
7070
7071
7072
7073
7074
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7069

class FilterV2 < Struct.new(
  :filter_key,
  :filter_values)
  SENSITIVE = []
  include Aws::Structure
end