interface MappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.B2BI.CfnTransformerPropsMixin.MappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsb2bi#CfnTransformerPropsMixin_MappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.b2bi.CfnTransformerPropsMixin.MappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_b2bi.CfnTransformerPropsMixin.MappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_b2bi » 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 { aws_b2bi as b2bi } from '@aws-cdk/cfn-property-mixins';
const mappingProperty: b2bi.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