All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.emrcontainers.kotlin.outputs.JobTemplateJobTemplateDataJobDriverSparkSqlJobDriver.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.emrcontainers.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property entryPoint The SQL file to be executed.
 * @property sparkSqlParameters The Spark parameters to be included in the Spark SQL command.
 */
public data class JobTemplateJobTemplateDataJobDriverSparkSqlJobDriver(
    public val entryPoint: String? = null,
    public val sparkSqlParameters: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.emrcontainers.outputs.JobTemplateJobTemplateDataJobDriverSparkSqlJobDriver): JobTemplateJobTemplateDataJobDriverSparkSqlJobDriver =
            JobTemplateJobTemplateDataJobDriverSparkSqlJobDriver(
                entryPoint = javaType.entryPoint().map({ args0 -> args0 }).orElse(null),
                sparkSqlParameters = javaType.sparkSqlParameters().map({ args0 -> args0 }).orElse(null),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy