Class: Aws::Glue::Types::SessionCommand

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass SessionCommand data as a hash:

{
  name: "NameString",
  python_version: "PythonVersionString",
}

The `SessionCommand` that runs the job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Specifies the name of the SessionCommand.Can be 'glueetl' or 'gluestreaming'.

Returns:

  • (String)


15459
15460
15461
15462
15463
15464
# File 'lib/aws-sdk-glue/types.rb', line 15459

class SessionCommand < Struct.new(
  :name,
  :python_version)
  SENSITIVE = []
  include Aws::Structure
end

#python_versionString

Specifies the Python version. The Python version indicates the version supported for jobs of type Spark.

Returns:

  • (String)


15459
15460
15461
15462
15463
15464
# File 'lib/aws-sdk-glue/types.rb', line 15459

class SessionCommand < Struct.new(
  :name,
  :python_version)
  SENSITIVE = []
  include Aws::Structure
end