
com.pulumi.awsnative.opensearchserverless.kotlin.outputs.GetVpcEndpointResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.opensearchserverless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property id The identifier of the VPC Endpoint
* @property securityGroupIds The ID of one or more security groups to associate with the endpoint network interface
* @property subnetIds The ID of one or more subnets in which to create an endpoint network interface
*/
public data class GetVpcEndpointResult(
public val id: String? = null,
public val securityGroupIds: List? = null,
public val subnetIds: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.opensearchserverless.outputs.GetVpcEndpointResult): GetVpcEndpointResult = GetVpcEndpointResult(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
securityGroupIds = javaType.securityGroupIds().map({ args0 -> args0 }),
subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy