Class: Aws::BedrockAgentCoreControl::Types::Filter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb

Overview

The filter that applies conditions to agent traces during online evaluation to determine which traces should be evaluated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key or field name to filter on within the agent trace data.

Returns:

  • (String)


3775
3776
3777
3778
3779
3780
3781
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3775

class Filter < Struct.new(
  :key,
  :operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The comparison operator to use for filtering.

Returns:

  • (String)


3775
3776
3777
3778
3779
3780
3781
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3775

class Filter < Struct.new(
  :key,
  :operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::FilterValue

The value to compare against using the specified operator.

Returns:



3775
3776
3777
3778
3779
3780
3781
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3775

class Filter < Struct.new(
  :key,
  :operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end