Class: Aws::Bedrock::Types::GuardrailContextualGroundingFilterConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::GuardrailContextualGroundingFilterConfig
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
The filter configuration details for the guardrails contextual grounding filter.
Constant Summary collapse
- SENSITIVE =
[:action]
Instance Attribute Summary collapse
-
#action ⇒ String
Specifies the action to take when content fails the contextual grounding evaluation.
-
#enabled ⇒ Boolean
Specifies whether to enable contextual grounding evaluation.
-
#threshold ⇒ Float
The threshold details for the guardrails contextual grounding filter.
-
#type ⇒ String
The filter details for the guardrails contextual grounding filter.
Instance Attribute Details
#action ⇒ String
Specifies the action to take when content fails the contextual grounding evaluation. Supported values include:
BLOCK
– Block the content and replace it with blocked messaging.NONE
– Take no action but return detection information in the trace response.
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4290 class GuardrailContextualGroundingFilterConfig < Struct.new( :type, :threshold, :action, :enabled) SENSITIVE = [:action] include Aws::Structure end |
#enabled ⇒ Boolean
Specifies whether to enable contextual grounding evaluation. When disabled, you aren't charged for the evaluation. The evaluation doesn't appear in the response.
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4290 class GuardrailContextualGroundingFilterConfig < Struct.new( :type, :threshold, :action, :enabled) SENSITIVE = [:action] include Aws::Structure end |
#threshold ⇒ Float
The threshold details for the guardrails contextual grounding filter.
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4290 class GuardrailContextualGroundingFilterConfig < Struct.new( :type, :threshold, :action, :enabled) SENSITIVE = [:action] include Aws::Structure end |
#type ⇒ String
The filter details for the guardrails contextual grounding filter.
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4290 class GuardrailContextualGroundingFilterConfig < Struct.new( :type, :threshold, :action, :enabled) SENSITIVE = [:action] include Aws::Structure end |