Class: Aws::B2bi::Types::TestParsingResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::TestParsingResponse
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parsed_file_content ⇒ String
Returns the contents of the input file being tested, parsed according to the specified EDI (electronic data interchange) type.
-
#parsed_split_file_contents ⇒ Array<String>
Returns an array of parsed file contents when the input file is split according to the specified split options.
-
#validation_messages ⇒ Array<String>
Returns an array of validation messages generated during EDI validation.
Instance Attribute Details
#parsed_file_content ⇒ String
Returns the contents of the input file being tested, parsed according to the specified EDI (electronic data interchange) type.
2170 2171 2172 2173 2174 2175 2176 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2170 class TestParsingResponse < Struct.new( :parsed_file_content, :parsed_split_file_contents, :validation_messages) SENSITIVE = [] include Aws::Structure end |
#parsed_split_file_contents ⇒ Array<String>
Returns an array of parsed file contents when the input file is split according to the specified split options. Each element in the array represents a separate split file's parsed content.
2170 2171 2172 2173 2174 2175 2176 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2170 class TestParsingResponse < Struct.new( :parsed_file_content, :parsed_split_file_contents, :validation_messages) SENSITIVE = [] include Aws::Structure end |
#validation_messages ⇒ Array<String>
Returns an array of validation messages generated during EDI
validation. These messages provide detailed information about
validation errors, warnings, or confirmations based on the
configured X12 validation rules such as element length constraints,
code list validations, and element requirement checks. This field is
populated when the TestParsing
API validates EDI documents.
2170 2171 2172 2173 2174 2175 2176 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2170 class TestParsingResponse < Struct.new( :parsed_file_content, :parsed_split_file_contents, :validation_messages) SENSITIVE = [] include Aws::Structure end |