interface X12FunctionalGroupHeadersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.B2BI.CfnPartnership.X12FunctionalGroupHeadersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnPartnership_X12FunctionalGroupHeadersProperty |
Java | software.amazon.awscdk.services.b2bi.CfnPartnership.X12FunctionalGroupHeadersProperty |
Python | aws_cdk.aws_b2bi.CfnPartnership.X12FunctionalGroupHeadersProperty |
TypeScript | aws-cdk-lib » aws_b2bi » CfnPartnership » X12FunctionalGroupHeadersProperty |
Part of the X12 message structure.
These are the functional group headers for the X12 EDI object.
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 x12FunctionalGroupHeadersProperty: b2bi.CfnPartnership.X12FunctionalGroupHeadersProperty = {
applicationReceiverCode: 'applicationReceiverCode',
applicationSenderCode: 'applicationSenderCode',
responsibleAgencyCode: 'responsibleAgencyCode',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | A value representing the code used to identify the party receiving a message, at position GS-03. |
| application | string | A value representing the code used to identify the party transmitting a message, at position GS-02. |
| responsible | string | A code that identifies the issuer of the standard, at position GS-07. |
applicationReceiverCode?
Type:
string
(optional)
A value representing the code used to identify the party receiving a message, at position GS-03.
applicationSenderCode?
Type:
string
(optional)
A value representing the code used to identify the party transmitting a message, at position GS-02.
responsibleAgencyCode?
Type:
string
(optional)
A code that identifies the issuer of the standard, at position GS-07.

.NET
Go
Java
Python
TypeScript