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

com.pulumi.awsnative.emrserverless.kotlin.outputs.ApplicationConfigurationObject.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@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