interface MappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnTransformerPropsMixin.MappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnTransformerPropsMixin_MappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnTransformerPropsMixin.MappingProperty |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnTransformerPropsMixin.MappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnTransformerPropsMixin » 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 { mixins as b2bi_mixins } from '@aws-cdk/mixins-preview/aws-b2bi';
const mappingProperty: b2bi_mixins.CfnTransformerPropsMixin.MappingProperty = {
template: 'template',
templateLanguage: 'templateLanguage',
};
Properties
| Name | Type | Description |
|---|---|---|
| template? | string | A string that represents the mapping template, in the transformation language specified in templateLanguage . |
| template | 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 .
templateLanguage?
Type:
string
(optional)
The transformation language for the template, either XSLT or JSONATA.

.NET
Go
Java
Python
TypeScript