Class: Aws::EMR::Types::ScriptBootstrapActionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ScriptBootstrapActionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass ScriptBootstrapActionConfig data as a hash:
{
path: "XmlString", # required
args: ["XmlString"],
}
Configuration of the script to run during a bootstrap action.
Instance Attribute Summary collapse
-
#args ⇒ Array<String>
A list of command line arguments to pass to the bootstrap action script.
-
#path ⇒ String
Location of the script to run during a bootstrap action.
Instance Attribute Details
#args ⇒ Array<String>
A list of command line arguments to pass to the bootstrap action script.
4632 4633 4634 4635 4636 |
# File 'lib/aws-sdk-emr/types.rb', line 4632 class ScriptBootstrapActionConfig < Struct.new( :path, :args) include Aws::Structure end |
#path ⇒ String
Location of the script to run during a bootstrap action. Can be either a location in Amazon S3 or on a local file system.
4632 4633 4634 4635 4636 |
# File 'lib/aws-sdk-emr/types.rb', line 4632 class ScriptBootstrapActionConfig < Struct.new( :path, :args) include Aws::Structure end |