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
1615 1616 1617 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1615 def unknown @unknown end |
#x12 ⇒ Types::X12Envelope
A structure that contains an X12 envelope structure.
1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1615 class OutboundEdiOptions < Struct.new( :x12, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class X12 < OutboundEdiOptions; end class Unknown < OutboundEdiOptions; end end |