Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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


826
827
828
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 826

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:


826
827
828
829
830
831
832
833
834
835
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 826

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

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