Class: Aws::BedrockAgentCoreControl::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::Filter
- 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
-
#key ⇒ String
The key or field name to filter on within the agent trace data.
-
#operator ⇒ String
The comparison operator to use for filtering.
-
#value ⇒ Types::FilterValue
The value to compare against using the specified operator.
Instance Attribute Details
#key ⇒ String
The key or field name to filter on within the agent trace data.
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 |
#operator ⇒ String
The comparison operator to use for filtering.
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 |
#value ⇒ Types::FilterValue
The value to compare against using the specified operator.
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 |