Class: Aws::B2bi::Types::TestParsingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::TestParsingRequest
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#advanced_options ⇒ Types::AdvancedOptions
Specifies advanced options for parsing the input EDI file.
-
#edi_type ⇒ Types::EdiType
Specifies the details for the EDI standard that is being used for the transformer.
-
#file_format ⇒ String
Specifies that the currently supported file formats for EDI transformations are
JSON
andXML
. -
#input_file ⇒ Types::S3Location
Specifies an
S3Location
object, which contains the Amazon S3 bucket and prefix for the location of the input file.
Instance Attribute Details
#advanced_options ⇒ Types::AdvancedOptions
Specifies advanced options for parsing the input EDI file. These options allow for more granular control over the parsing process, including split options for X12 files.
2122 2123 2124 2125 2126 2127 2128 2129 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2122 class TestParsingRequest < Struct.new( :input_file, :file_format, :edi_type, :advanced_options) SENSITIVE = [] include Aws::Structure end |
#edi_type ⇒ Types::EdiType
Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
2122 2123 2124 2125 2126 2127 2128 2129 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2122 class TestParsingRequest < Struct.new( :input_file, :file_format, :edi_type, :advanced_options) SENSITIVE = [] include Aws::Structure end |
#file_format ⇒ String
Specifies that the currently supported file formats for EDI
transformations are JSON
and XML
.
2122 2123 2124 2125 2126 2127 2128 2129 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2122 class TestParsingRequest < Struct.new( :input_file, :file_format, :edi_type, :advanced_options) SENSITIVE = [] include Aws::Structure end |
#input_file ⇒ Types::S3Location
Specifies an S3Location
object, which contains the Amazon S3
bucket and prefix for the location of the input file.
2122 2123 2124 2125 2126 2127 2128 2129 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2122 class TestParsingRequest < Struct.new( :input_file, :file_format, :edi_type, :advanced_options) SENSITIVE = [] include Aws::Structure end |