Class: Aws::Bedrock::Types::GuardrailAutomatedReasoningPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::GuardrailAutomatedReasoningPolicy
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents the configuration of Automated Reasoning policies within a Amazon Bedrock Guardrail, including the policies to apply and confidence thresholds.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence_threshold ⇒ Float
The minimum confidence level required for Automated Reasoning policy violations to trigger guardrail actions.
-
#policies ⇒ Array<String>
The list of Automated Reasoning policy ARNs that should be applied as part of this guardrail configuration.
Instance Attribute Details
#confidence_threshold ⇒ Float
The minimum confidence level required for Automated Reasoning policy violations to trigger guardrail actions. Values range from 0.0 to 1.0.
6706 6707 6708 6709 6710 6711 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6706 class GuardrailAutomatedReasoningPolicy < Struct.new( :policies, :confidence_threshold) SENSITIVE = [] include Aws::Structure end |
#policies ⇒ Array<String>
The list of Automated Reasoning policy ARNs that should be applied as part of this guardrail configuration.
6706 6707 6708 6709 6710 6711 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6706 class GuardrailAutomatedReasoningPolicy < Struct.new( :policies, :confidence_threshold) SENSITIVE = [] include Aws::Structure end |