![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iot.kotlin.inputs.TopicRuleDestinationVpcDestinationPropertiesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iot.kotlin.inputs
import com.pulumi.awsnative.iot.inputs.TopicRuleDestinationVpcDestinationPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property roleArn The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
* @property securityGroups The security groups of the VPC destination.
* @property subnetIds The subnet IDs of the VPC destination.
* @property vpcId The ID of the VPC.
*/
public data class TopicRuleDestinationVpcDestinationPropertiesArgs(
public val roleArn: Output? = null,
public val securityGroups: Output>? = null,
public val subnetIds: Output>? = null,
public val vpcId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iot.inputs.TopicRuleDestinationVpcDestinationPropertiesArgs =
com.pulumi.awsnative.iot.inputs.TopicRuleDestinationVpcDestinationPropertiesArgs.builder()
.roleArn(roleArn?.applyValue({ args0 -> args0 }))
.securityGroups(securityGroups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.subnetIds(subnetIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.vpcId(vpcId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TopicRuleDestinationVpcDestinationPropertiesArgs].
*/
@PulumiTagMarker
public class TopicRuleDestinationVpcDestinationPropertiesArgsBuilder internal constructor() {
private var roleArn: Output? = null
private var securityGroups: Output>? = null
private var subnetIds: Output>? = null
private var vpcId: Output? = null
/**
* @param value The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
*/
@JvmName("bppnnqyvrexmnari")
public suspend fun roleArn(`value`: Output) {
this.roleArn = value
}
/**
* @param value The security groups of the VPC destination.
*/
@JvmName("xmsiccyyknlqlhgv")
public suspend fun securityGroups(`value`: Output>) {
this.securityGroups = value
}
@JvmName("noduwytladnuavru")
public suspend fun securityGroups(vararg values: Output) {
this.securityGroups = Output.all(values.asList())
}
/**
* @param values The security groups of the VPC destination.
*/
@JvmName("rrnlbiymqmkchcib")
public suspend fun securityGroups(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy