Interface TN3270.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TN3270.Builder,TN3270>,SdkBuilder<TN3270.Builder,TN3270>,SdkPojo
- Enclosing class:
- TN3270
public static interface TN3270.Builder extends SdkPojo, CopyableBuilder<TN3270.Builder,TN3270>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TN3270.BuilderexportDataSetNames(String... exportDataSetNames)The data set names of the TN3270 protocol.TN3270.BuilderexportDataSetNames(Collection<String> exportDataSetNames)The data set names of the TN3270 protocol.default TN3270.Builderscript(Consumer<Script.Builder> script)The script of the TN3270 protocol.TN3270.Builderscript(Script script)The script of the TN3270 protocol.-
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
-
script
TN3270.Builder script(Script script)
The script of the TN3270 protocol.
- Parameters:
script- The script of the TN3270 protocol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
script
default TN3270.Builder script(Consumer<Script.Builder> script)
The script of the TN3270 protocol.
This is a convenience method that creates an instance of theScript.Builderavoiding the need to create one manually viaScript.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toscript(Script).- Parameters:
script- a consumer that will call methods onScript.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
script(Script)
-
exportDataSetNames
TN3270.Builder exportDataSetNames(Collection<String> exportDataSetNames)
The data set names of the TN3270 protocol.
- Parameters:
exportDataSetNames- The data set names of the TN3270 protocol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportDataSetNames
TN3270.Builder exportDataSetNames(String... exportDataSetNames)
The data set names of the TN3270 protocol.
- Parameters:
exportDataSetNames- The data set names of the TN3270 protocol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-