Interface ExecuteCommandSessionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecuteCommandSessionConfiguration.Builder,ExecuteCommandSessionConfiguration>,SdkBuilder<ExecuteCommandSessionConfiguration.Builder,ExecuteCommandSessionConfiguration>,SdkPojo
- Enclosing class:
- ExecuteCommandSessionConfiguration
public static interface ExecuteCommandSessionConfiguration.Builder extends SdkPojo, CopyableBuilder<ExecuteCommandSessionConfiguration.Builder,ExecuteCommandSessionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecuteCommandSessionConfiguration.Builderarguments(String... arguments)An array of arguments containing arguments and members.ExecuteCommandSessionConfiguration.Builderarguments(Collection<String> arguments)An array of arguments containing arguments and members.ExecuteCommandSessionConfiguration.Buildercommand(String command)The command used at the beginning of the SSH session to a Dev Environment.-
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
-
command
ExecuteCommandSessionConfiguration.Builder command(String command)
The command used at the beginning of the SSH session to a Dev Environment.
- Parameters:
command- The command used at the beginning of the SSH session to a Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arguments
ExecuteCommandSessionConfiguration.Builder arguments(Collection<String> arguments)
An array of arguments containing arguments and members.
- Parameters:
arguments- An array of arguments containing arguments and members.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arguments
ExecuteCommandSessionConfiguration.Builder arguments(String... arguments)
An array of arguments containing arguments and members.
- Parameters:
arguments- An array of arguments containing arguments and members.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-