Interface CfnPartnership.X12ControlNumbersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnership.X12ControlNumbersProperty.Jsii$Proxy
- Enclosing class:
CfnPartnership
@Stability(Stable)
public static interface CfnPartnership.X12ControlNumbersProperty
extends software.amazon.jsii.JsiiSerializable
Contains configuration for X12 control numbers used in X12 EDI generation.
Control numbers are used to uniquely identify interchanges, functional groups, and transaction sets.
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.*; X12ControlNumbersProperty x12ControlNumbersProperty = X12ControlNumbersProperty.builder() .startingFunctionalGroupControlNumber(123) .startingInterchangeControlNumber(123) .startingTransactionSetControlNumber(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPartnership.X12ControlNumbersProperty
static final class
An implementation forCfnPartnership.X12ControlNumbersProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
Specifies the starting functional group control number (GS06) to use for X12 EDI generation.default Number
Specifies the starting interchange control number (ISA13) to use for X12 EDI generation.default Number
Specifies the starting transaction set control number (ST02) to use for X12 EDI generation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStartingFunctionalGroupControlNumber
Specifies the starting functional group control number (GS06) to use for X12 EDI generation.This number is incremented for each new functional group. For the GS (functional group) envelope, AWS B2B Data Interchange generates a functional group control number that is unique to the sender ID, receiver ID, and functional identifier code combination.
- See Also:
-
getStartingInterchangeControlNumber
Specifies the starting interchange control number (ISA13) to use for X12 EDI generation.This number is incremented for each new interchange. For the ISA (interchange) envelope, AWS B2B Data Interchange generates an interchange control number that is unique for the ISA05 and ISA06 (sender) & ISA07 and ISA08 (receiver) combination.
- See Also:
-
getStartingTransactionSetControlNumber
Specifies the starting transaction set control number (ST02) to use for X12 EDI generation.This number is incremented for each new transaction set.
- See Also:
-
builder
-