Interface LaunchOverrides.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LaunchOverrides.Builder,LaunchOverrides>,SdkBuilder<LaunchOverrides.Builder,LaunchOverrides>,SdkPojo
- Enclosing class:
- LaunchOverrides
public static interface LaunchOverrides.Builder extends SdkPojo, CopyableBuilder<LaunchOverrides.Builder,LaunchOverrides>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LaunchOverrides.BuilderlaunchCommands(String... launchCommands)App launch commands and command line parameters that override the launch command configured in the simulation schema.LaunchOverrides.BuilderlaunchCommands(Collection<String> launchCommands)App launch commands and command line parameters that override the launch command configured in the simulation schema.-
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
-
launchCommands
LaunchOverrides.Builder launchCommands(Collection<String> launchCommands)
App launch commands and command line parameters that override the launch command configured in the simulation schema.
- Parameters:
launchCommands- App launch commands and command line parameters that override the launch command configured in the simulation schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
launchCommands
LaunchOverrides.Builder launchCommands(String... launchCommands)
App launch commands and command line parameters that override the launch command configured in the simulation schema.
- Parameters:
launchCommands- App launch commands and command line parameters that override the launch command configured in the simulation schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-