com.pulumi.awsnative.ec2.kotlin.TransitGatewayConnect.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin
import com.pulumi.awsnative.ec2.kotlin.outputs.TransitGatewayConnectOptions
import com.pulumi.awsnative.kotlin.outputs.Tag
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import com.pulumi.awsnative.ec2.kotlin.outputs.TransitGatewayConnectOptions.Companion.toKotlin as transitGatewayConnectOptionsToKotlin
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin as tagToKotlin
/**
* Builder for [TransitGatewayConnect].
*/
@PulumiTagMarker
public class TransitGatewayConnectResourceBuilder internal constructor() {
public var name: String? = null
public var args: TransitGatewayConnectArgs = TransitGatewayConnectArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend TransitGatewayConnectArgsBuilder.() -> Unit) {
val builder = TransitGatewayConnectArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): TransitGatewayConnect {
val builtJavaResource = com.pulumi.awsnative.ec2.TransitGatewayConnect(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return TransitGatewayConnect(builtJavaResource)
}
}
/**
* The AWS::EC2::TransitGatewayConnect type
*/
public class TransitGatewayConnect internal constructor(
override val javaResource: com.pulumi.awsnative.ec2.TransitGatewayConnect,
) : KotlinCustomResource(javaResource, TransitGatewayConnectMapper) {
/**
* The creation time.
*/
public val creationTime: Output
get() = javaResource.creationTime().applyValue({ args0 -> args0 })
/**
* The Connect attachment options.
*/
public val options: Output
get() = javaResource.options().applyValue({ args0 ->
args0.let({ args0 ->
transitGatewayConnectOptionsToKotlin(args0)
})
})
/**
* The state of the attachment.
*/
public val state: Output
get() = javaResource.state().applyValue({ args0 -> args0 })
/**
* The tags for the attachment.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> tagToKotlin(args0) })
})
}).orElse(null)
})
/**
* The ID of the Connect attachment.
*/
public val transitGatewayAttachmentId: Output
get() = javaResource.transitGatewayAttachmentId().applyValue({ args0 -> args0 })
/**
* The ID of the transit gateway.
*/
public val transitGatewayId: Output
get() = javaResource.transitGatewayId().applyValue({ args0 -> args0 })
/**
* The ID of the attachment from which the Connect attachment was created.
*/
public val transportTransitGatewayAttachmentId: Output
get() = javaResource.transportTransitGatewayAttachmentId().applyValue({ args0 -> args0 })
}
public object TransitGatewayConnectMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.ec2.TransitGatewayConnect::class == javaResource::class
override fun map(javaResource: Resource): TransitGatewayConnect =
TransitGatewayConnect(javaResource as com.pulumi.awsnative.ec2.TransitGatewayConnect)
}
/**
* @see [TransitGatewayConnect].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [TransitGatewayConnect].
*/
public suspend fun transitGatewayConnect(
name: String,
block: suspend TransitGatewayConnectResourceBuilder.() -> Unit,
): TransitGatewayConnect {
val builder = TransitGatewayConnectResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [TransitGatewayConnect].
* @param name The _unique_ name of the resulting resource.
*/
public fun transitGatewayConnect(name: String): TransitGatewayConnect {
val builder = TransitGatewayConnectResourceBuilder()
builder.name(name)
return builder.build()
}