Interface CfnTransformer.X12DetailsProperty

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

@Stability(Stable) public static interface CfnTransformer.X12DetailsProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains the X12 transaction set and version.

The X12 structure is used when the system transforms an EDI (electronic data interchange) file.

If an EDI input file contains more than one transaction, each transaction must have the same transaction set and version, for example 214/4010. If not, the transformer cannot parse the file.

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.*;
 X12DetailsProperty x12DetailsProperty = X12DetailsProperty.builder()
         .transactionSet("transactionSet")
         .version("version")
         .build();
 

See Also: