interface MappingProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_b2bi.CfnTransformer.MappingProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsb2bi#CfnTransformer_MappingProperty |
![]() | software.amazon.awscdk.services.b2bi.CfnTransformer.MappingProperty |
![]() | aws_cdk.aws_b2bi.CfnTransformer.MappingProperty |
![]() | aws-cdk-lib » aws_b2bi » CfnTransformer » MappingProperty |
Specifies the mapping template for the transformer.
This template is used to map the parsed EDI file using JSONata or XSLT.
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 mappingProperty: b2bi.CfnTransformer.MappingProperty = {
templateLanguage: 'templateLanguage',
// the properties below are optional
template: 'template',
};
Properties
Name | Type | Description |
---|---|---|
template | string | The transformation language for the template, either XSLT or JSONATA. |
template? | string | A string that represents the mapping template, in the transformation language specified in templateLanguage . |
templateLanguage
Type:
string
The transformation language for the template, either XSLT or JSONATA.
template?
Type:
string
(optional)
A string that represents the mapping template, in the transformation language specified in templateLanguage
.