![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.outputs.GetLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult.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.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property localGatewayId The ID of the local gateway.
* @property localGatewayRouteTableArn The ARN of the local gateway route table.
* @property localGatewayRouteTableVirtualInterfaceGroupAssociationId The ID of the local gateway route table virtual interface group association.
* @property ownerId The owner of the local gateway route table virtual interface group association.
* @property state The state of the local gateway route table virtual interface group association.
* @property tags The tags for the local gateway route table virtual interface group association.
*/
public data class GetLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult(
public val localGatewayId: String? = null,
public val localGatewayRouteTableArn: String? = null,
public val localGatewayRouteTableVirtualInterfaceGroupAssociationId: String? = null,
public val ownerId: String? = null,
public val state: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.GetLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult): GetLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult =
GetLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult(
localGatewayId = javaType.localGatewayId().map({ args0 -> args0 }).orElse(null),
localGatewayRouteTableArn = javaType.localGatewayRouteTableArn().map({ args0 ->
args0
}).orElse(null),
localGatewayRouteTableVirtualInterfaceGroupAssociationId = javaType.localGatewayRouteTableVirtualInterfaceGroupAssociationId().map({ args0 ->
args0
}).orElse(null),
ownerId = javaType.ownerId().map({ args0 -> args0 }).orElse(null),
state = javaType.state().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy