![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.apprunner.kotlin.outputs.GetVpcConnectorResult.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.apprunner.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property vpcConnectorArn The Amazon Resource Name (ARN) of this VPC connector.
* @property vpcConnectorRevision The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.
*/
public data class GetVpcConnectorResult(
public val vpcConnectorArn: String? = null,
public val vpcConnectorRevision: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.apprunner.outputs.GetVpcConnectorResult): GetVpcConnectorResult = GetVpcConnectorResult(
vpcConnectorArn = javaType.vpcConnectorArn().map({ args0 -> args0 }).orElse(null),
vpcConnectorRevision = javaType.vpcConnectorRevision().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy