com.pulumi.awsnative.ec2.kotlin.TransitGatewayPeeringAttachment.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.kotlin.outputs.TransitGatewayPeeringAttachmentPeeringAttachmentStatus
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.TransitGatewayPeeringAttachmentPeeringAttachmentStatus.Companion.toKotlin as transitGatewayPeeringAttachmentPeeringAttachmentStatusToKotlin
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin as tagToKotlin
/**
* Builder for [TransitGatewayPeeringAttachment].
*/
@PulumiTagMarker
public class TransitGatewayPeeringAttachmentResourceBuilder internal constructor() {
public var name: String? = null
public var args: TransitGatewayPeeringAttachmentArgs = TransitGatewayPeeringAttachmentArgs()
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 TransitGatewayPeeringAttachmentArgsBuilder.() -> Unit) {
val builder = TransitGatewayPeeringAttachmentArgsBuilder()
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(): TransitGatewayPeeringAttachment {
val builtJavaResource =
com.pulumi.awsnative.ec2.TransitGatewayPeeringAttachment(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return TransitGatewayPeeringAttachment(builtJavaResource)
}
}
/**
* The AWS::EC2::TransitGatewayPeeringAttachment type
*/
public class TransitGatewayPeeringAttachment internal constructor(
override val javaResource: com.pulumi.awsnative.ec2.TransitGatewayPeeringAttachment,
) : KotlinCustomResource(javaResource, TransitGatewayPeeringAttachmentMapper) {
/**
* The time the transit gateway peering attachment was created.
*/
public val creationTime: Output
get() = javaResource.creationTime().applyValue({ args0 -> args0 })
/**
* The ID of the peer account
*/
public val peerAccountId: Output
get() = javaResource.peerAccountId().applyValue({ args0 -> args0 })
/**
* Peer Region
*/
public val peerRegion: Output
get() = javaResource.peerRegion().applyValue({ args0 -> args0 })
/**
* The ID of the peer transit gateway.
*/
public val peerTransitGatewayId: Output
get() = javaResource.peerTransitGatewayId().applyValue({ args0 -> args0 })
/**
* The state of the transit gateway peering attachment. Note that the initiating state has been deprecated.
*/
public val state: Output
get() = javaResource.state().applyValue({ args0 -> args0 })
/**
* The status of the transit gateway peering attachment.
*/
public val status: Output
get() = javaResource.status().applyValue({ args0 ->
args0.let({ args0 ->
transitGatewayPeeringAttachmentPeeringAttachmentStatusToKotlin(args0)
})
})
/**
* The tags for the transit gateway peering 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 transit gateway peering 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 })
}
public object TransitGatewayPeeringAttachmentMapper :
ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.ec2.TransitGatewayPeeringAttachment::class == javaResource::class
override fun map(javaResource: Resource): TransitGatewayPeeringAttachment =
TransitGatewayPeeringAttachment(
javaResource as
com.pulumi.awsnative.ec2.TransitGatewayPeeringAttachment,
)
}
/**
* @see [TransitGatewayPeeringAttachment].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [TransitGatewayPeeringAttachment].
*/
public suspend fun transitGatewayPeeringAttachment(
name: String,
block: suspend TransitGatewayPeeringAttachmentResourceBuilder.() -> Unit,
): TransitGatewayPeeringAttachment {
val builder = TransitGatewayPeeringAttachmentResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [TransitGatewayPeeringAttachment].
* @param name The _unique_ name of the resulting resource.
*/
public fun transitGatewayPeeringAttachment(name: String): TransitGatewayPeeringAttachment {
val builder = TransitGatewayPeeringAttachmentResourceBuilder()
builder.name(name)
return builder.build()
}