Interface CfnGuardrail.ContentPolicyConfigProperty

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

@Stability(Stable) public static interface CfnGuardrail.ContentPolicyConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains details about how to handle harmful content.

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.*;
 ContentPolicyConfigProperty contentPolicyConfigProperty = ContentPolicyConfigProperty.builder()
         .filtersConfig(List.of(ContentFilterConfigProperty.builder()
                 .inputStrength("inputStrength")
                 .outputStrength("outputStrength")
                 .type("type")
                 .build()))
         .build();
 

See Also: