com.pulumi.awsnative.ec2.kotlin.CarrierGatewayArgs.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.ec2.kotlin
import com.pulumi.awsnative.ec2.CarrierGatewayArgs.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
/**
* An example resource schema demonstrating some basic constructs and validation rules.
* @property tags The tags for the carrier gateway.
* @property vpcId The ID of the VPC.
*/
public data class CarrierGatewayArgs(
public val tags: Output>? = null,
public val vpcId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.CarrierGatewayArgs =
com.pulumi.awsnative.ec2.CarrierGatewayArgs.builder()
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.vpcId(vpcId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CarrierGatewayArgs].
*/
@PulumiTagMarker
public class CarrierGatewayArgsBuilder internal constructor() {
private var tags: Output>? = null
private var vpcId: Output? = null
/**
* @param value The tags for the carrier gateway.
*/
@JvmName("clfdartpuaretvqa")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("heevtsexqkwgwiww")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values The tags for the carrier gateway.
*/
@JvmName("mkqaplwmovjnhttc")
public suspend fun tags(values: List