![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.redshiftserverless.kotlin.outputs.WorkgroupVpcEndpoint.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.redshiftserverless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property networkInterfaces One or more network interfaces of the endpoint. Also known as an interface endpoint.
* @property vpcEndpointId The connection endpoint ID for connecting to Amazon Redshift Serverless.
* @property vpcId The VPC identifier that the endpoint is associated with.
*/
public data class WorkgroupVpcEndpoint(
public val networkInterfaces: List? = null,
public val vpcEndpointId: String? = null,
public val vpcId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.redshiftserverless.outputs.WorkgroupVpcEndpoint): WorkgroupVpcEndpoint = WorkgroupVpcEndpoint(
networkInterfaces = javaType.networkInterfaces().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.redshiftserverless.kotlin.outputs.WorkgroupNetworkInterface.Companion.toKotlin(args0)
})
}),
vpcEndpointId = javaType.vpcEndpointId().map({ args0 -> args0 }).orElse(null),
vpcId = javaType.vpcId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy