interface OutboundEdiOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnPartnershipPropsMixin_OutboundEdiOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnPartnershipPropsMixin » OutboundEdiOptionsProperty |
A container for outbound EDI options.
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 outboundEdiOptionsProperty: b2bi_mixins.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty = {
x12: {
common: {
controlNumbers: {
startingFunctionalGroupControlNumber: 123,
startingInterchangeControlNumber: 123,
startingTransactionSetControlNumber: 123,
},
delimiters: {
componentSeparator: 'componentSeparator',
dataElementSeparator: 'dataElementSeparator',
segmentTerminator: 'segmentTerminator',
},
functionalGroupHeaders: {
applicationReceiverCode: 'applicationReceiverCode',
applicationSenderCode: 'applicationSenderCode',
responsibleAgencyCode: 'responsibleAgencyCode',
},
gs05TimeFormat: 'gs05TimeFormat',
interchangeControlHeaders: {
acknowledgmentRequestedCode: 'acknowledgmentRequestedCode',
receiverId: 'receiverId',
receiverIdQualifier: 'receiverIdQualifier',
repetitionSeparator: 'repetitionSeparator',
senderId: 'senderId',
senderIdQualifier: 'senderIdQualifier',
usageIndicatorCode: 'usageIndicatorCode',
},
validateEdi: false,
},
wrapOptions: {
lineLength: 123,
lineTerminator: 'lineTerminator',
wrapBy: 'wrapBy',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| x12? | IResolvable | X12 | A structure that contains an X12 envelope structure. |
x12?
Type:
IResolvable | X12
(optional)
A structure that contains an X12 envelope structure.

.NET
Go
Java
Python
TypeScript