Class: Aws::B2bi::Types::TestMappingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::TestMappingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-b2bi/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_format ⇒ String
Specifies that the currently supported file formats for EDI transformations are ‘JSON` and `XML`.
-
#input_file_content ⇒ String
Specify the contents of the EDI (electronic data interchange) XML or JSON file that is used as input for the transform.
-
#mapping_template ⇒ String
Specifies the mapping template for the transformer.
Instance Attribute Details
#file_format ⇒ String
Specifies that the currently supported file formats for EDI transformations are ‘JSON` and `XML`.
2032 2033 2034 2035 2036 2037 2038 |
# File 'lib/aws-sdk-b2bi/types.rb', line 2032 class TestMappingRequest < Struct.new( :input_file_content, :mapping_template, :file_format) SENSITIVE = [] include Aws::Structure end |
#input_file_content ⇒ String
Specify the contents of the EDI (electronic data interchange) XML or JSON file that is used as input for the transform.
2032 2033 2034 2035 2036 2037 2038 |
# File 'lib/aws-sdk-b2bi/types.rb', line 2032 class TestMappingRequest < Struct.new( :input_file_content, :mapping_template, :file_format) SENSITIVE = [] include Aws::Structure end |
#mapping_template ⇒ String
Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
<note markdown=“1”> This parameter is available for backwards compatibility. Use the
- Mapping][1
-
data type instead.
</note>
[1]: docs.aws.amazon.com/b2bi/latest/APIReference/API_Mapping.html
2032 2033 2034 2035 2036 2037 2038 |
# File 'lib/aws-sdk-b2bi/types.rb', line 2032 class TestMappingRequest < Struct.new( :input_file_content, :mapping_template, :file_format) SENSITIVE = [] include Aws::Structure end |