interface X12DelimitersProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_b2bi.CfnPartnership.X12DelimitersProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnPartnership_X12DelimitersProperty |
![]() | software.amazon.awscdk.services.b2bi.CfnPartnership.X12DelimitersProperty |
![]() | aws_cdk.aws_b2bi.CfnPartnership.X12DelimitersProperty |
![]() | aws-cdk-lib » aws_b2bi » CfnPartnership » X12DelimitersProperty |
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 { aws_b2bi as b2bi } from 'aws-cdk-lib';
const x12DelimitersProperty: b2bi.CfnPartnership.X12DelimitersProperty = {
componentSeparator: 'componentSeparator',
dataElementSeparator: 'dataElementSeparator',
segmentTerminator: 'segmentTerminator',
};
Properties
Name | Type | Description |
---|---|---|
component | string | The component, or sub-element, separator. |
data | string | The data element separator. |
segment | string | The segment terminator. |
componentSeparator?
Type:
string
(optional)
The component, or sub-element, separator.
The default value is :
(colon).
dataElementSeparator?
Type:
string
(optional)
The data element separator.
The default value is *
(asterisk).
segmentTerminator?
Type:
string
(optional)
The segment terminator.
The default value is ~
(tilde).