Class: Aws::EMR::Types::Application
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::Application
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
When making an API call, you may pass Application data as a hash:
{
name: "String",
version: "String",
args: ["String"],
additional_info: {
"String" => "String",
},
}
With Amazon EMR release version 4.0 and later, the only accepted parameter is the application name. To pass arguments to applications, you use configuration classifications specified using configuration JSON objects. For more information, see Configuring Applications.
With earlier Amazon EMR releases, the application is any Amazon or third-party software that you can add to the cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action argument.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_info ⇒ Hash<String,String>
This option is for advanced users only.
-
#args ⇒ Array<String>
Arguments for Amazon EMR to pass to the application.
-
#name ⇒ String
The name of the application.
-
#version ⇒ String
The version of the application.
Instance Attribute Details
#additional_info ⇒ Hash<String,String>
This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.
383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 383 class Application < Struct.new( :name, :version, :args, :additional_info) SENSITIVE = [] include Aws::Structure end |
#args ⇒ Array<String>
Arguments for Amazon EMR to pass to the application.
383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 383 class Application < Struct.new( :name, :version, :args, :additional_info) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the application.
383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 383 class Application < Struct.new( :name, :version, :args, :additional_info) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of the application.
383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 383 class Application < Struct.new( :name, :version, :args, :additional_info) SENSITIVE = [] include Aws::Structure end |