Class: Aws::B2bi::Types::Mapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::Mapping
- Includes:
- Structure
- Defined in:
- 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`.
1602 1603 1604 1605 1606 1607 |
# File 'lib/aws-sdk-b2bi/types.rb', line 1602 class Mapping < Struct.new( :template_language, :template) SENSITIVE = [] include Aws::Structure end |
#template_language ⇒ String
The transformation language for the template, either XSLT or JSONATA.
1602 1603 1604 1605 1606 1607 |
# File 'lib/aws-sdk-b2bi/types.rb', line 1602 class Mapping < Struct.new( :template_language, :template) SENSITIVE = [] include Aws::Structure end |