Class: Aws::B2bi::Types::EdiType

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb

Overview

Note:

EdiType is a union - when making an API calls you must set exactly one of the members.

Note:

EdiType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EdiType corresponding to the set member.

Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.

Direct Known Subclasses

Unknown, X12Details

Defined Under Namespace

Classes: Unknown, X12Details

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



621
622
623
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 621

def unknown
  @unknown
end

#x12_detailsTypes::X12Details

Returns the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.

Returns:



621
622
623
624
625
626
627
628
629
630
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 621

class EdiType < Struct.new(
  :x12_details,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class X12Details < EdiType; end
  class Unknown < EdiType; end
end