interface InboundEdiOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.B2BI.CfnPartnership.InboundEdiOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnPartnership_InboundEdiOptionsProperty |
Java | software.amazon.awscdk.services.b2bi.CfnPartnership.InboundEdiOptionsProperty |
Python | aws_cdk.aws_b2bi.CfnPartnership.InboundEdiOptionsProperty |
TypeScript | aws-cdk-lib » aws_b2bi » CfnPartnership » InboundEdiOptionsProperty |
Contains options for processing inbound EDI files.
These options allow for customizing how incoming EDI documents are processed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_b2bi as b2bi } from 'aws-cdk-lib';
const inboundEdiOptionsProperty: b2bi.CfnPartnership.InboundEdiOptionsProperty = {
x12: {
acknowledgmentOptions: {
functionalAcknowledgment: 'functionalAcknowledgment',
technicalAcknowledgment: 'technicalAcknowledgment',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| x12? | IResolvable | X12 | A structure that contains X12-specific options for processing inbound X12 EDI files. |
x12?
Type:
IResolvable | X12
(optional)
A structure that contains X12-specific options for processing inbound X12 EDI files.

.NET
Go
Java
Python
TypeScript