Interface CfnTransformerPropsMixin.X12CodeListValidationRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformerPropsMixin.X12CodeListValidationRuleProperty.Jsii$Proxy
- Enclosing class:
CfnTransformerPropsMixin
@Stability(Stable)
public static interface CfnTransformerPropsMixin.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.cfnpropertymixins.services.b2bi.*;
X12CodeListValidationRuleProperty x12CodeListValidationRuleProperty = X12CodeListValidationRuleProperty.builder()
.codesToAdd(List.of("codesToAdd"))
.codesToRemove(List.of("codesToRemove"))
.elementId("elementId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTransformerPropsMixin.X12CodeListValidationRuleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
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:
-
builder
@Stability(Stable) static CfnTransformerPropsMixin.X12CodeListValidationRuleProperty.Builder builder()
-