Interface X12InboundEdiOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<X12InboundEdiOptions.Builder,
,X12InboundEdiOptions> SdkBuilder<X12InboundEdiOptions.Builder,
,X12InboundEdiOptions> SdkPojo
- Enclosing class:
X12InboundEdiOptions
@Mutable
@NotThreadSafe
public static interface X12InboundEdiOptions.Builder
extends SdkPojo, CopyableBuilder<X12InboundEdiOptions.Builder,X12InboundEdiOptions>
-
Method Summary
Modifier and TypeMethodDescriptiondefault X12InboundEdiOptions.Builder
acknowledgmentOptions
(Consumer<X12AcknowledgmentOptions.Builder> acknowledgmentOptions) Specifies acknowledgment options for inbound X12 EDI files.acknowledgmentOptions
(X12AcknowledgmentOptions acknowledgmentOptions) Specifies acknowledgment options for inbound X12 EDI files.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
acknowledgmentOptions
Specifies acknowledgment options for inbound X12 EDI files. These options control how functional and technical acknowledgments are handled.
- Parameters:
acknowledgmentOptions
- Specifies acknowledgment options for inbound X12 EDI files. These options control how functional and technical acknowledgments are handled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
acknowledgmentOptions
default X12InboundEdiOptions.Builder acknowledgmentOptions(Consumer<X12AcknowledgmentOptions.Builder> acknowledgmentOptions) Specifies acknowledgment options for inbound X12 EDI files. These options control how functional and technical acknowledgments are handled.
This is a convenience method that creates an instance of theX12AcknowledgmentOptions.Builder
avoiding the need to create one manually viaX12AcknowledgmentOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toacknowledgmentOptions(X12AcknowledgmentOptions)
.- Parameters:
acknowledgmentOptions
- a consumer that will call methods onX12AcknowledgmentOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-