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.
4053 4054 4055 4056 4057 4058 4059 4060 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4053 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.
4053 4054 4055 4056 4057 4058 4059 4060 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4053 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.
4053 4054 4055 4056 4057 4058 4059 4060 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4053 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.
4053 4054 4055 4056 4057 4058 4059 4060 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4053 class GuardrailContextualGroundingFilterConfig < Struct.new( :type, :threshold, :action, :enabled) SENSITIVE = [:action] include Aws::Structure end |