Class: Aws::B2bi::Types::Mapping

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#templateString

A string that represents the mapping template, in the transformation language specified in templateLanguage.

Returns:

  • (String)


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

#template_languageString

The transformation language for the template, either XSLT or JSONATA.

Returns:

  • (String)


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