Class: Aws::EMR::Types::BootstrapActionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::BootstrapActionConfig
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass BootstrapActionConfig data as a hash:
{
name: "XmlStringMaxLen256", # required
script_bootstrap_action: { # required
path: "XmlString", # required
args: ["XmlString"],
},
}
Configuration of a bootstrap action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the bootstrap action.
-
#script_bootstrap_action ⇒ Types::ScriptBootstrapActionConfig
The script run by the bootstrap action.
Instance Attribute Details
#name ⇒ String
The name of the bootstrap action.
626 627 628 629 630 631 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 626 class BootstrapActionConfig < Struct.new( :name, :script_bootstrap_action) SENSITIVE = [] include Aws::Structure end |
#script_bootstrap_action ⇒ Types::ScriptBootstrapActionConfig
The script run by the bootstrap action.
626 627 628 629 630 631 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 626 class BootstrapActionConfig < Struct.new( :name, :script_bootstrap_action) SENSITIVE = [] include Aws::Structure end |