Interface CfnPartnership.X12DelimitersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnership.X12DelimitersProperty.Jsii$Proxy
- Enclosing class:
CfnPartnership
@Stability(Stable)
public static interface CfnPartnership.X12DelimitersProperty
extends software.amazon.jsii.JsiiSerializable
In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header.
The delimiters are part of the message's syntax and divide up its different elements.
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.*; X12DelimitersProperty x12DelimitersProperty = X12DelimitersProperty.builder() .componentSeparator("componentSeparator") .dataElementSeparator("dataElementSeparator") .segmentTerminator("segmentTerminator") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPartnership.X12DelimitersProperty
static final class
An implementation forCfnPartnership.X12DelimitersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComponentSeparator
The component, or sub-element, separator.The default value is
:
(colon).- See Also:
-
getDataElementSeparator
The data element separator.The default value is
*
(asterisk).- See Also:
-
getSegmentTerminator
The segment terminator.The default value is
~
(tilde).- See Also:
-
builder
-