com.pulumi.awsnative.controltower.kotlin.LandingZoneArgs.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.controltower.kotlin
import com.pulumi.awsnative.controltower.LandingZoneArgs.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.Any
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Definition of AWS::ControlTower::LandingZone Resource Type
* @property manifest The landing zone manifest JSON text file that specifies the landing zone configurations.
* Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ControlTower::LandingZone` for more information about the expected schema for this property.
* @property tags Tags to be applied to the landing zone.
* @property version The landing zone's current deployed version.
*/
public data class LandingZoneArgs(
public val manifest: Output? = null,
public val tags: Output>? = null,
public val version: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.controltower.LandingZoneArgs =
com.pulumi.awsnative.controltower.LandingZoneArgs.builder()
.manifest(manifest?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.version(version?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LandingZoneArgs].
*/
@PulumiTagMarker
public class LandingZoneArgsBuilder internal constructor() {
private var manifest: Output? = null
private var tags: Output>? = null
private var version: Output? = null
/**
* @param value The landing zone manifest JSON text file that specifies the landing zone configurations.
* Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ControlTower::LandingZone` for more information about the expected schema for this property.
*/
@JvmName("fodeuifcaidsjcle")
public suspend fun manifest(`value`: Output) {
this.manifest = value
}
/**
* @param value Tags to be applied to the landing zone.
*/
@JvmName("kbgmnaytjmpgylbe")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("hvpdvcvqpqmlajrs")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values Tags to be applied to the landing zone.
*/
@JvmName("fuindvttrnvgbovu")
public suspend fun tags(values: List