Interface InputConversion.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<InputConversion.Builder,
,InputConversion> SdkBuilder<InputConversion.Builder,
,InputConversion> SdkPojo
- Enclosing class:
InputConversion
-
Method Summary
Modifier and TypeMethodDescriptiondefault InputConversion.Builder
advancedOptions
(Consumer<AdvancedOptions.Builder> advancedOptions) Specifies advanced options for the input conversion process.advancedOptions
(AdvancedOptions advancedOptions) Specifies advanced options for the input conversion process.default InputConversion.Builder
formatOptions
(Consumer<FormatOptions.Builder> formatOptions) A structure that contains the formatting options for an inbound transformer.formatOptions
(FormatOptions formatOptions) A structure that contains the formatting options for an inbound transformer.fromFormat
(String fromFormat) The format for the transformer input: currently onX12
is supported.fromFormat
(FromFormat fromFormat) The format for the transformer input: currently onX12
is supported.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
-
fromFormat
The format for the transformer input: currently on
X12
is supported.- Parameters:
fromFormat
- The format for the transformer input: currently onX12
is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
fromFormat
The format for the transformer input: currently on
X12
is supported.- Parameters:
fromFormat
- The format for the transformer input: currently onX12
is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
formatOptions
A structure that contains the formatting options for an inbound transformer.
- Parameters:
formatOptions
- A structure that contains the formatting options for an inbound transformer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatOptions
A structure that contains the formatting options for an inbound transformer.
This is a convenience method that creates an instance of theFormatOptions.Builder
avoiding the need to create one manually viaFormatOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toformatOptions(FormatOptions)
.- Parameters:
formatOptions
- a consumer that will call methods onFormatOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
advancedOptions
Specifies advanced options for the input conversion process. These options provide additional control over how EDI files are processed during transformation.
- Parameters:
advancedOptions
- Specifies advanced options for the input conversion process. These options provide additional control over how EDI files are processed during transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
advancedOptions
Specifies advanced options for the input conversion process. These options provide additional control over how EDI files are processed during transformation.
This is a convenience method that creates an instance of theAdvancedOptions.Builder
avoiding the need to create one manually viaAdvancedOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toadvancedOptions(AdvancedOptions)
.- Parameters:
advancedOptions
- a consumer that will call methods onAdvancedOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-