![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.msk.kotlin.outputs.ReplicatorKafkaClusterClientVpcConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.msk.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Details of an Amazon VPC which has network connectivity to the Kafka cluster.
* @property securityGroupIds The AWS security groups to associate with the elastic network interfaces in order to specify what the replicator has access to. If a security group is not specified, the default security group associated with the VPC is used.
* @property subnetIds The list of subnets to connect to in the virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets.
*/
public data class ReplicatorKafkaClusterClientVpcConfig(
public val securityGroupIds: List? = null,
public val subnetIds: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.msk.outputs.ReplicatorKafkaClusterClientVpcConfig): ReplicatorKafkaClusterClientVpcConfig = ReplicatorKafkaClusterClientVpcConfig(
securityGroupIds = javaType.securityGroupIds().map({ args0 -> args0 }),
subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy