Class: Aws::EMRServerless::Types::SparkSubmit
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRServerless::Types::SparkSubmit
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emrserverless/types.rb
Overview
The configurations for the Spark submit job driver.
Constant Summary collapse
- SENSITIVE =
[:entry_point, :entry_point_arguments, :spark_submit_parameters]
Instance Attribute Summary collapse
-
#entry_point ⇒ String
The entry point for the Spark submit job run.
-
#entry_point_arguments ⇒ Array<String>
The arguments for the Spark submit job run.
-
#spark_submit_parameters ⇒ String
The parameters for the Spark submit job run.
Instance Attribute Details
#entry_point ⇒ String
The entry point for the Spark submit job run.
1551 1552 1553 1554 1555 1556 1557 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1551 class SparkSubmit < Struct.new( :entry_point, :entry_point_arguments, :spark_submit_parameters) SENSITIVE = [:entry_point, :entry_point_arguments, :spark_submit_parameters] include Aws::Structure end |
#entry_point_arguments ⇒ Array<String>
The arguments for the Spark submit job run.
1551 1552 1553 1554 1555 1556 1557 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1551 class SparkSubmit < Struct.new( :entry_point, :entry_point_arguments, :spark_submit_parameters) SENSITIVE = [:entry_point, :entry_point_arguments, :spark_submit_parameters] include Aws::Structure end |
#spark_submit_parameters ⇒ String
The parameters for the Spark submit job run.
1551 1552 1553 1554 1555 1556 1557 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1551 class SparkSubmit < Struct.new( :entry_point, :entry_point_arguments, :spark_submit_parameters) SENSITIVE = [:entry_point, :entry_point_arguments, :spark_submit_parameters] include Aws::Structure end |