Interface CfnEnforcedGuardrailConfiguration.ModelEnforcementProperty

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

@Stability(Stable) public static interface CfnEnforcedGuardrailConfiguration.ModelEnforcementProperty extends software.amazon.jsii.JsiiSerializable
Model-specific information for the enforced guardrail configuration.

If not present, the configuration is enforced on all models

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.*;
 ModelEnforcementProperty modelEnforcementProperty = ModelEnforcementProperty.builder()
         .excludedModels(List.of("excludedModels"))
         .includedModels(List.of("includedModels"))
         .build();
 

See Also: