com.pulumi.awsnative.emr.kotlin.WalWorkspaceArgs.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.emr.kotlin
import com.pulumi.awsnative.emr.WalWorkspaceArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource schema for AWS::EMR::WALWorkspace Type
* @property tags An array of key-value pairs to apply to this resource.
* @property walWorkspaceName The name of the emrwal container
*/
public data class WalWorkspaceArgs(
public val tags: Output>? = null,
public val walWorkspaceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.emr.WalWorkspaceArgs =
com.pulumi.awsnative.emr.WalWorkspaceArgs.builder()
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.walWorkspaceName(walWorkspaceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WalWorkspaceArgs].
*/
@PulumiTagMarker
public class WalWorkspaceArgsBuilder internal constructor() {
private var tags: Output>? = null
private var walWorkspaceName: Output? = null
/**
* @param value An array of key-value pairs to apply to this resource.
*/
@JvmName("rdwptbyruiomjgsj")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("cuwihhkkydtdjjse")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values An array of key-value pairs to apply to this resource.
*/
@JvmName("awqfuxyepjyxkldu")
public suspend fun tags(values: List