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



1615
1616
1617
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1615

def unknown
  @unknown
end

#x12Types::X12Envelope

A structure that contains an X12 envelope structure.

Returns:



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