![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.devicefarm.kotlin.outputs.ProjectVpcConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.devicefarm.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The VPC security groups and subnets that are attached to a project
* @property securityGroupIds An array of security group Ids in your Amazon VPC
* @property subnetIds A array of subnet IDs in your Amazon VPC.
* @property vpcId The ID of the Amazon VPC
*/
public data class ProjectVpcConfig(
public val securityGroupIds: List,
public val subnetIds: List,
public val vpcId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.devicefarm.outputs.ProjectVpcConfig): ProjectVpcConfig = ProjectVpcConfig(
securityGroupIds = javaType.securityGroupIds().map({ args0 -> args0 }),
subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
vpcId = javaType.vpcId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy