com.pulumi.aws.imagebuilder.kotlin.inputs.ImageRecipeSystemsManagerAgentArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.imagebuilder.kotlin.inputs
import com.pulumi.aws.imagebuilder.inputs.ImageRecipeSystemsManagerAgentArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property uninstallAfterBuild Whether to remove the Systems Manager Agent after the image has been built.
*/
public data class ImageRecipeSystemsManagerAgentArgs(
public val uninstallAfterBuild: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.imagebuilder.inputs.ImageRecipeSystemsManagerAgentArgs =
com.pulumi.aws.imagebuilder.inputs.ImageRecipeSystemsManagerAgentArgs.builder()
.uninstallAfterBuild(uninstallAfterBuild.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ImageRecipeSystemsManagerAgentArgs].
*/
@PulumiTagMarker
public class ImageRecipeSystemsManagerAgentArgsBuilder internal constructor() {
private var uninstallAfterBuild: Output? = null
/**
* @param value Whether to remove the Systems Manager Agent after the image has been built.
*/
@JvmName("fcukumtromordqkr")
public suspend fun uninstallAfterBuild(`value`: Output) {
this.uninstallAfterBuild = value
}
/**
* @param value Whether to remove the Systems Manager Agent after the image has been built.
*/
@JvmName("gflejgdnqbsvyorb")
public suspend fun uninstallAfterBuild(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.uninstallAfterBuild = mapped
}
internal fun build(): ImageRecipeSystemsManagerAgentArgs = ImageRecipeSystemsManagerAgentArgs(
uninstallAfterBuild = uninstallAfterBuild ?: throw PulumiNullFieldException("uninstallAfterBuild"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy