interface X12AcknowledgmentOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnPartnershipPropsMixin.X12AcknowledgmentOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnPartnershipPropsMixin_X12AcknowledgmentOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnPartnershipPropsMixin.X12AcknowledgmentOptionsProperty |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnPartnershipPropsMixin.X12AcknowledgmentOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnPartnershipPropsMixin » X12AcknowledgmentOptionsProperty |
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 { mixins as b2bi_mixins } from '@aws-cdk/mixins-preview/aws-b2bi';
const x12AcknowledgmentOptionsProperty: b2bi_mixins.CfnPartnershipPropsMixin.X12AcknowledgmentOptionsProperty = {
functionalAcknowledgment: 'functionalAcknowledgment',
technicalAcknowledgment: 'technicalAcknowledgment',
};
Properties
| Name | Type | Description |
|---|---|---|
| functional | string | Specifies whether functional acknowledgments (997/999) should be generated for incoming X12 transactions. |
| technical | string | Specifies whether technical acknowledgments (TA1) should be generated for incoming X12 interchanges. |
functionalAcknowledgment?
Type:
string
(optional)
Specifies whether functional acknowledgments (997/999) should be generated for incoming X12 transactions.
Valid values are DO_NOT_GENERATE , GENERATE_ALL_SEGMENTS and GENERATE_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.
technicalAcknowledgment?
Type:
string
(optional)
Specifies whether technical acknowledgments (TA1) should be generated for incoming X12 interchanges.
Valid values are DO_NOT_GENERATE and GENERATE_ALL_SEGMENTS and.

.NET
Go
Java
Python
TypeScript