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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTransformer.X12CodeListValidationRuleProperty
static final class
An implementation forCfnTransformer.X12CodeListValidationRuleProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies a list of code values to add to the element's allowed values.Specifies a list of code values to remove from the element's allowed values.Specifies the four-digit element ID to which the code list modifications apply.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getElementId
Specifies the four-digit element ID to which the code list modifications apply.This identifies which X12 element will have its allowed code values modified.
- See Also:
-
getCodesToAdd
Specifies a list of code values to add to the element's allowed values.These codes will be considered valid for the specified element in addition to the standard codes defined by the X12 specification.
- See Also:
-
getCodesToRemove
Specifies a list of code values to remove from the element's allowed values.These codes will be considered invalid for the specified element, even if they are part of the standard codes defined by the X12 specification.
- See Also:
-
builder
-