Interface CfnGuardrail.AutomatedReasoningPolicyConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGuardrail.AutomatedReasoningPolicyConfigProperty.Jsii$Proxy
- Enclosing class:
CfnGuardrail
@Stability(Stable)
public static interface CfnGuardrail.AutomatedReasoningPolicyConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for integrating Automated Reasoning policies with Amazon Bedrock Guardrails.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.bedrock.*; AutomatedReasoningPolicyConfigProperty automatedReasoningPolicyConfigProperty = AutomatedReasoningPolicyConfigProperty.builder() .policies(List.of("policies")) // the properties below are optional .confidenceThreshold(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGuardrail.AutomatedReasoningPolicyConfigProperty
static final class
An implementation forCfnGuardrail.AutomatedReasoningPolicyConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPolicies
The list of Automated Reasoning policy ARNs that should be applied as part of this guardrail configuration.- See Also:
-
getConfidenceThreshold
The minimum confidence level required for Automated Reasoning policy violations to trigger guardrail actions.Values range from 0.0 to 1.0.
- See Also:
-
builder
-