Interface MainframeActionType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MainframeActionType.Builder,MainframeActionType>,SdkBuilder<MainframeActionType.Builder,MainframeActionType>,SdkPojo
- Enclosing class:
- MainframeActionType
public static interface MainframeActionType.Builder extends SdkPojo, CopyableBuilder<MainframeActionType.Builder,MainframeActionType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MainframeActionType.Builderbatch(Consumer<Batch.Builder> batch)The batch of the mainframe action type.MainframeActionType.Builderbatch(Batch batch)The batch of the mainframe action type.default MainframeActionType.Buildertn3270(Consumer<TN3270.Builder> tn3270)The tn3270 port of the mainframe action type.MainframeActionType.Buildertn3270(TN3270 tn3270)The tn3270 port of the mainframe action type.-
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 Detail
-
batch
MainframeActionType.Builder batch(Batch batch)
The batch of the mainframe action type.
- Parameters:
batch- The batch of the mainframe action type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batch
default MainframeActionType.Builder batch(Consumer<Batch.Builder> batch)
The batch of the mainframe action type.
This is a convenience method that creates an instance of theBatch.Builderavoiding the need to create one manually viaBatch.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobatch(Batch).- Parameters:
batch- a consumer that will call methods onBatch.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
batch(Batch)
-
tn3270
MainframeActionType.Builder tn3270(TN3270 tn3270)
The tn3270 port of the mainframe action type.
- Parameters:
tn3270- The tn3270 port of the mainframe action type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tn3270
default MainframeActionType.Builder tn3270(Consumer<TN3270.Builder> tn3270)
The tn3270 port of the mainframe action type.
This is a convenience method that creates an instance of theTN3270.Builderavoiding the need to create one manually viaTN3270.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totn3270(TN3270).- Parameters:
tn3270- a consumer that will call methods onTN3270.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tn3270(TN3270)
-
-