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: