Class: Aws::B2bi::Types::OutboundEdiOptions

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Unknown, X12

Defined Under Namespace

Classes: Unknown, X12

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1571
1572
1573
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1571

def unknown
  @unknown
end

#x12Types::X12Envelope

A structure that contains an X12 envelope structure.

Returns:



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