Class: Aws::EMR::Types::Command

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/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

Instance Attribute Details

#argsArray<String>

Arguments for Amazon EMR to pass to the command for execution.

Returns:

  • (Array<String>)


975
976
977
978
979
980
981
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 975

class Command < Struct.new(
  :name,
  :script_path,
  :args)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the command.

Returns:

  • (String)


975
976
977
978
979
980
981
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 975

class Command < Struct.new(
  :name,
  :script_path,
  :args)
  SENSITIVE = []
  include Aws::Structure
end

#script_pathString

The Amazon S3 location of the command script.

Returns:

  • (String)


975
976
977
978
979
980
981
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 975

class Command < Struct.new(
  :name,
  :script_path,
  :args)
  SENSITIVE = []
  include Aws::Structure
end