Class: Aws::B2bi::Types::Mapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::Mapping
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#template ⇒ String
A string that represents the mapping template, in the transformation language specified in
templateLanguage
. -
#template_language ⇒ String
The transformation language for the template, either XSLT or JSONATA.
Instance Attribute Details
#template ⇒ String
A string that represents the mapping template, in the transformation
language specified in templateLanguage
.
1509 1510 1511 1512 1513 1514 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1509 class Mapping < Struct.new( :template_language, :template) SENSITIVE = [] include Aws::Structure end |