Interface ScriptBootstrapActionConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScriptBootstrapActionConfig.Builder,ScriptBootstrapActionConfig>,SdkBuilder<ScriptBootstrapActionConfig.Builder,ScriptBootstrapActionConfig>,SdkPojo
- Enclosing class:
- ScriptBootstrapActionConfig
public static interface ScriptBootstrapActionConfig.Builder extends SdkPojo, CopyableBuilder<ScriptBootstrapActionConfig.Builder,ScriptBootstrapActionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScriptBootstrapActionConfig.Builderargs(String... args)A list of command line arguments to pass to the bootstrap action script.ScriptBootstrapActionConfig.Builderargs(Collection<String> args)A list of command line arguments to pass to the bootstrap action script.ScriptBootstrapActionConfig.Builderpath(String path)Location in Amazon S3 of the script to run during a bootstrap action.-
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
-
path
ScriptBootstrapActionConfig.Builder path(String path)
Location in Amazon S3 of the script to run during a bootstrap action.
- Parameters:
path- Location in Amazon S3 of the script to run during a bootstrap action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
args
ScriptBootstrapActionConfig.Builder args(Collection<String> args)
A list of command line arguments to pass to the bootstrap action script.
- Parameters:
args- A list of command line arguments to pass to the bootstrap action script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
args
ScriptBootstrapActionConfig.Builder args(String... args)
A list of command line arguments to pass to the bootstrap action script.
- Parameters:
args- A list of command line arguments to pass to the bootstrap action script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-