Interface CfnTransformer.X12ElementLengthValidationRuleProperty

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

@Stability(Stable) public static interface CfnTransformer.X12ElementLengthValidationRuleProperty extends software.amazon.jsii.JsiiSerializable
Defines a validation rule that specifies custom length constraints for a specific X12 element.

This rule allows you to override the standard minimum and maximum length requirements for an element, enabling validation of trading partner-specific length requirements that may differ from the X12 specification. Both minimum and maximum length values must be specified.

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.*;
 X12ElementLengthValidationRuleProperty x12ElementLengthValidationRuleProperty = X12ElementLengthValidationRuleProperty.builder()
         .elementId("elementId")
         .maxLength(123)
         .minLength(123)
         .build();
 

See Also: