Class: Aws::B2bi::Types::OutboundEdiOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::OutboundEdiOptions
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Note:
OutboundEdiOptions is a union - when making an API calls you must set exactly one of the members.
Note:
OutboundEdiOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutboundEdiOptions corresponding to the set member.
A container for outbound EDI options.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#x12 ⇒ Types::X12Envelope
A structure that contains an X12 envelope structure.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1571 1572 1573 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1571 def unknown @unknown end |
#x12 ⇒ Types::X12Envelope
A structure that contains an X12 envelope structure.
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1571 class OutboundEdiOptions < Struct.new( :x12, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class X12 < OutboundEdiOptions; end class Unknown < OutboundEdiOptions; end end |