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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2842
2843
2844
2845
2846
2847
# File 'lib/aws-sdk-b2bi/types.rb', line 2842

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)


2842
2843
2844
2845
2846
2847
# File 'lib/aws-sdk-b2bi/types.rb', line 2842

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