Interface CfnTransformer.X12SplitOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformer.X12SplitOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTransformer
@Stability(Stable)
public static interface CfnTransformer.X12SplitOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Contains options for splitting X12 EDI files into smaller units.
This is useful for processing large EDI files more efficiently.
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.*;
X12SplitOptionsProperty x12SplitOptionsProperty = X12SplitOptionsProperty.builder()
.splitBy("splitBy")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformer.X12SplitOptionsPropertystatic final classAn implementation forCfnTransformer.X12SplitOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSplitBy
Specifies the method used to split X12 EDI files.Valid values include
TRANSACTION(split by individual transaction sets), orNONE(no splitting).- See Also:
-
builder
-