Class: Aws::EMR::Types::Command
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::Command
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
An entity describing an executable that runs on a cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#args ⇒ Array<String>
Arguments for Amazon EMR to pass to the command for execution.
-
#name ⇒ String
The name of the command.
-
#script_path ⇒ String
The Amazon S3 location of the command script.
Instance Attribute Details
#args ⇒ Array<String>
Arguments for Amazon EMR to pass to the command for execution.
975 976 977 978 979 980 981 |
# File 'lib/aws-sdk-emr/types.rb', line 975 class Command < Struct.new( :name, :script_path, :args) SENSITIVE = [] include Aws::Structure end |