Class: Aws::B2bi::Types::OutputConversion
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::OutputConversion
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Contains the formatting options for an outbound transformer (takes JSON or XML as input and converts it to an EDI document (currently only X12 format is supported).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#advanced_options ⇒ Types::AdvancedOptions
A structure that contains advanced options for EDI processing.
-
#format_options ⇒ Types::FormatOptions
A structure that contains the X12 transaction set and version for the transformer output.
-
#to_format ⇒ String
The format for the output from an outbound transformer: only X12 is currently supported.
Instance Attribute Details
#advanced_options ⇒ Types::AdvancedOptions
A structure that contains advanced options for EDI processing. Currently, only X12 advanced options are supported.
1653 1654 1655 1656 1657 1658 1659 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1653 class OutputConversion < Struct.new( :to_format, :format_options, :advanced_options) SENSITIVE = [] include Aws::Structure end |
#format_options ⇒ Types::FormatOptions
A structure that contains the X12 transaction set and version for the transformer output.
1653 1654 1655 1656 1657 1658 1659 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1653 class OutputConversion < Struct.new( :to_format, :format_options, :advanced_options) SENSITIVE = [] include Aws::Structure end |
#to_format ⇒ String
The format for the output from an outbound transformer: only X12 is currently supported.
1653 1654 1655 1656 1657 1658 1659 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1653 class OutputConversion < Struct.new( :to_format, :format_options, :advanced_options) SENSITIVE = [] include Aws::Structure end |