Interface CfnPartnership.X12AcknowledgmentOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnership.X12AcknowledgmentOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnPartnership
@Stability(Stable)
public static interface CfnPartnership.X12AcknowledgmentOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Contains options for configuring X12 acknowledgments.
These options control how functional and technical acknowledgments are handled.
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.*;
X12AcknowledgmentOptionsProperty x12AcknowledgmentOptionsProperty = X12AcknowledgmentOptionsProperty.builder()
.functionalAcknowledgment("functionalAcknowledgment")
.technicalAcknowledgment("technicalAcknowledgment")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPartnership.X12AcknowledgmentOptionsPropertystatic final classAn implementation forCfnPartnership.X12AcknowledgmentOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies whether functional acknowledgments (997/999) should be generated for incoming X12 transactions.Specifies whether technical acknowledgments (TA1) should be generated for incoming X12 interchanges.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFunctionalAcknowledgment
Specifies whether functional acknowledgments (997/999) should be generated for incoming X12 transactions.Valid values are
DO_NOT_GENERATE,GENERATE_ALL_SEGMENTSandGENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP.If you choose
GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP, AWS B2B Data Interchange skips the AK2_Loop when generating an acknowledgment document.- See Also:
-
getTechnicalAcknowledgment
Specifies whether technical acknowledgments (TA1) should be generated for incoming X12 interchanges.Valid values are
DO_NOT_GENERATEandGENERATE_ALL_SEGMENTSand.- See Also:
-
builder
-