Interface InputConversion.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<InputConversion.Builder,
,InputConversion> SdkBuilder<InputConversion.Builder,
,InputConversion> SdkPojo
- Enclosing class:
InputConversion
public static interface InputConversion.Builder
extends SdkPojo, CopyableBuilder<InputConversion.Builder,InputConversion>
-
Method Summary
Modifier and TypeMethodDescriptiondefault 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, 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:
-