com.pulumi.awsnative.iot.kotlin.SoftwarePackageArgs.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.iot.kotlin
import com.pulumi.awsnative.iot.SoftwarePackageArgs.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 definition
* @property description
* @property packageName
* @property tags An array of key-value pairs to apply to this resource.
*/
public data class SoftwarePackageArgs(
public val description: Output? = null,
public val packageName: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iot.SoftwarePackageArgs =
com.pulumi.awsnative.iot.SoftwarePackageArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.packageName(packageName?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [SoftwarePackageArgs].
*/
@PulumiTagMarker
public class SoftwarePackageArgsBuilder internal constructor() {
private var description: Output? = null
private var packageName: Output? = null
private var tags: Output>? = null
/**
* @param value
*/
@JvmName("jfhlhdwwwonyfdlf")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value
*/
@JvmName("kiqfoirlkuiiegsf")
public suspend fun packageName(`value`: Output) {
this.packageName = value
}
/**
* @param value An array of key-value pairs to apply to this resource.
*/
@JvmName("riagrqeeymuiigyx")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("udqnndwpbknkhyxu")
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("ccgopgifpaxokqsj")
public suspend fun tags(values: List