Interface CfnGuardrail.ContextualGroundingPolicyConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGuardrail.ContextualGroundingPolicyConfigProperty.Jsii$Proxy
Enclosing class:
CfnGuardrail

@Stability(Stable) public static interface CfnGuardrail.ContextualGroundingPolicyConfigProperty extends software.amazon.jsii.JsiiSerializable
The policy configuration details for the guardrails contextual grounding policy.

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.*;
 ContextualGroundingPolicyConfigProperty contextualGroundingPolicyConfigProperty = ContextualGroundingPolicyConfigProperty.builder()
         .filtersConfig(List.of(ContextualGroundingFilterConfigProperty.builder()
                 .threshold(123)
                 .type("type")
                 .build()))
         .build();
 

See Also: