Interface CfnTransformer.X12CodeListValidationRuleProperty

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

@Stability(Stable) public static interface CfnTransformer.X12CodeListValidationRuleProperty extends software.amazon.jsii.JsiiSerializable
Code list validation rule configuration.

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.b2bi.*;
 X12CodeListValidationRuleProperty x12CodeListValidationRuleProperty = X12CodeListValidationRuleProperty.builder()
         .elementId("elementId")
         // the properties below are optional
         .codesToAdd(List.of("codesToAdd"))
         .codesToRemove(List.of("codesToRemove"))
         .build();
 

See Also: