interface OutboundEdiOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.B2BI.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsb2bi#CfnPartnershipPropsMixin_OutboundEdiOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.b2bi.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_b2bi.CfnPartnershipPropsMixin.OutboundEdiOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_b2bi » 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 { aws_b2bi as b2bi } from '@aws-cdk/cfn-property-mixins';
const outboundEdiOptionsProperty: b2bi.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