Interface CfnGuardrail.RegexConfigProperty

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

@Stability(Stable) public static interface CfnGuardrail.RegexConfigProperty extends software.amazon.jsii.JsiiSerializable
The regular expression to configure for the guardrail.

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.*;
 RegexConfigProperty regexConfigProperty = RegexConfigProperty.builder()
         .action("action")
         .name("name")
         .pattern("pattern")
         // the properties below are optional
         .description("description")
         .build();
 

See Also: