
com.pulumi.awsnative.neptunegraph.kotlin.outputs.GetPrivateGraphEndpointResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.neptunegraph.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property privateGraphEndpointIdentifier PrivateGraphEndpoint resource identifier generated by concatenating the associated GraphIdentifier and VpcId with an underscore separator.
* For example, if GraphIdentifier is `g-12a3bcdef4` and VpcId is `vpc-0a12bc34567de8f90`, the generated PrivateGraphEndpointIdentifier will be `g-12a3bcdef4_vpc-0a12bc34567de8f90`
* @property vpcEndpointId VPC endpoint that provides a private connection between the Graph and specified VPC.
*/
public data class GetPrivateGraphEndpointResult(
public val privateGraphEndpointIdentifier: String? = null,
public val vpcEndpointId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.neptunegraph.outputs.GetPrivateGraphEndpointResult): GetPrivateGraphEndpointResult = GetPrivateGraphEndpointResult(
privateGraphEndpointIdentifier = javaType.privateGraphEndpointIdentifier().map({ args0 ->
args0
}).orElse(null),
vpcEndpointId = javaType.vpcEndpointId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy