Interface CfnGuardrail.ContextualGroundingFilterConfigProperty

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

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

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.*;
 ContextualGroundingFilterConfigProperty contextualGroundingFilterConfigProperty = ContextualGroundingFilterConfigProperty.builder()
         .threshold(123)
         .type("type")
         // the properties below are optional
         .action("action")
         .enabled(false)
         .build();
 

See Also: