Class: Aws::B2bi::Types::X12AcknowledgmentOptions

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

Overview

Contains options for configuring X12 acknowledgments. These options control how functional and technical acknowledgments are handled.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#functional_acknowledgmentString

Specifies whether functional acknowledgments (997/999) should be generated for incoming X12 transactions. Valid values are DO_NOT_GENERATE, GENERATE_ALL_SEGMENTS and GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP.

If you choose GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP, Amazon Web Services B2B Data Interchange skips the AK2_Loop when generating an acknowledgment document.

Returns:

  • (String)


2811
2812
2813
2814
2815
2816
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2811

class X12AcknowledgmentOptions < Struct.new(
  :functional_acknowledgment,
  :technical_acknowledgment)
  SENSITIVE = []
  include Aws::Structure
end

#technical_acknowledgmentString

Specifies whether technical acknowledgments (TA1) should be generated for incoming X12 interchanges. Valid values are DO_NOT_GENERATE and GENERATE_ALL_SEGMENTS and.

Returns:

  • (String)


2811
2812
2813
2814
2815
2816
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 2811

class X12AcknowledgmentOptions < Struct.new(
  :functional_acknowledgment,
  :technical_acknowledgment)
  SENSITIVE = []
  include Aws::Structure
end