Interface CfnPartnership.X12InterchangeControlHeadersProperty

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

@Stability(Stable) public static interface CfnPartnership.X12InterchangeControlHeadersProperty extends software.amazon.jsii.JsiiSerializable
In X12, the Interchange Control Header is the first segment of an EDI document and is part of the Interchange Envelope.

It contains information about the sender and receiver, the date and time of transmission, and the X12 version being used. It also includes delivery information, such as the sender and receiver IDs.

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.*;
 X12InterchangeControlHeadersProperty x12InterchangeControlHeadersProperty = X12InterchangeControlHeadersProperty.builder()
         .acknowledgmentRequestedCode("acknowledgmentRequestedCode")
         .receiverId("receiverId")
         .receiverIdQualifier("receiverIdQualifier")
         .repetitionSeparator("repetitionSeparator")
         .senderId("senderId")
         .senderIdQualifier("senderIdQualifier")
         .usageIndicatorCode("usageIndicatorCode")
         .build();
 

See Also: