![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.emrserverless.kotlin.outputs.ApplicationConfigurationObject.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.emrserverless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* Configuration for a JobRun.
* @property classification String with a maximum length of 1024.
* @property configurations
* @property properties
*/
public data class ApplicationConfigurationObject(
public val classification: String,
public val configurations: List? = null,
public val properties: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.emrserverless.outputs.ApplicationConfigurationObject): ApplicationConfigurationObject = ApplicationConfigurationObject(
classification = javaType.classification(),
configurations = javaType.configurations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.emrserverless.kotlin.outputs.ApplicationConfigurationObject.Companion.toKotlin(args0)
})
}),
properties = javaType.properties().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy