Interface EdiType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EdiType.Builder,EdiType>,SdkBuilder<EdiType.Builder,EdiType>,SdkPojo
- Enclosing class:
- EdiType
public static interface EdiType.Builder extends SdkPojo, CopyableBuilder<EdiType.Builder,EdiType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EdiType.Builderx12Details(Consumer<X12Details.Builder> x12Details)Returns the details for the EDI standard that is being used for the transformer.EdiType.Builderx12Details(X12Details x12Details)Returns the details for the EDI standard that is being used for the transformer.-
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 Detail
-
x12Details
EdiType.Builder x12Details(X12Details x12Details)
Returns the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
- Parameters:
x12Details- Returns the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
x12Details
default EdiType.Builder x12Details(Consumer<X12Details.Builder> x12Details)
Returns the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
This is a convenience method that creates an instance of theX12Details.Builderavoiding the need to create one manually viaX12Details.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tox12Details(X12Details).- Parameters:
x12Details- a consumer that will call methods onX12Details.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
x12Details(X12Details)
-
-