interface EdiConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.B2BI.CfnCapability.EdiConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnCapability_EdiConfigurationProperty |
Java | software.amazon.awscdk.services.b2bi.CfnCapability.EdiConfigurationProperty |
Python | aws_cdk.aws_b2bi.CfnCapability.EdiConfigurationProperty |
TypeScript | aws-cdk-lib » aws_b2bi » CfnCapability » EdiConfigurationProperty |
Specifies the details for the EDI (electronic data interchange) transformation.
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 ediConfigurationProperty: b2bi.CfnCapability.EdiConfigurationProperty = {
inputLocation: {
bucketName: 'bucketName',
key: 'key',
},
outputLocation: {
bucketName: 'bucketName',
key: 'key',
},
transformerId: 'transformerId',
type: {
x12Details: {
transactionSet: 'transactionSet',
version: 'version',
},
},
// the properties below are optional
capabilityDirection: 'capabilityDirection',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | S3 | Contains the Amazon S3 bucket and prefix for the location of the input file, which is contained in an S3Location object. |
| output | IResolvable | S3 | Contains the Amazon S3 bucket and prefix for the location of the output file, which is contained in an S3Location object. |
| transformer | string | Returns the system-assigned unique identifier for the transformer. |
| type | IResolvable | Edi | Returns the type of the capability. |
| capability | string | Specifies whether this is capability is for inbound or outbound transformations. |
inputLocation
Type:
IResolvable | S3
Contains the Amazon S3 bucket and prefix for the location of the input file, which is contained in an S3Location object.
outputLocation
Type:
IResolvable | S3
Contains the Amazon S3 bucket and prefix for the location of the output file, which is contained in an S3Location object.
transformerId
Type:
string
Returns the system-assigned unique identifier for the transformer.
type
Type:
IResolvable | Edi
Returns the type of the capability.
Currently, only edi is supported.
capabilityDirection?
Type:
string
(optional)
Specifies whether this is capability is for inbound or outbound transformations.

.NET
Go
Java
Python
TypeScript