ApplicationArgs

data class ApplicationArgs(val additionalInfo: Output<Map<String, String>>? = null, val args: Output<List<String>>? = null, val name: Output<String>? = null, val version: Output<String>? = null) : ConvertibleToJava<ApplicationArgs>

Definition of Application

Constructors

Link copied to clipboard
constructor(additionalInfo: Output<Map<String, String>>? = null, args: Output<List<String>>? = null, name: Output<String>? = null, version: Output<String>? = null)

Properties

Link copied to clipboard
val additionalInfo: Output<Map<String, String>>? = null

This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.

Link copied to clipboard
val args: Output<List<String>>? = null

Arguments for Amazon EMR to pass to the application.

Link copied to clipboard
val name: Output<String>? = null

The name of the application.

Link copied to clipboard
val version: Output<String>? = null

The version of the application.

Functions

Link copied to clipboard
open override fun toJava(): ApplicationArgs