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

.NET
Go
Java
Python
TypeScript