![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.route53resolver.kotlin.inputs.GetResolverRulePlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.route53resolver.kotlin.inputs
import com.pulumi.awsnative.route53resolver.inputs.GetResolverRulePlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property resolverRuleId The ID of the endpoint that the rule is associated with.
*/
public data class GetResolverRulePlainArgs(
public val resolverRuleId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.route53resolver.inputs.GetResolverRulePlainArgs =
com.pulumi.awsnative.route53resolver.inputs.GetResolverRulePlainArgs.builder()
.resolverRuleId(resolverRuleId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetResolverRulePlainArgs].
*/
@PulumiTagMarker
public class GetResolverRulePlainArgsBuilder internal constructor() {
private var resolverRuleId: String? = null
/**
* @param value The ID of the endpoint that the rule is associated with.
*/
@JvmName("ailjdflsntlxtwnj")
public suspend fun resolverRuleId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resolverRuleId = mapped
}
internal fun build(): GetResolverRulePlainArgs = GetResolverRulePlainArgs(
resolverRuleId = resolverRuleId ?: throw PulumiNullFieldException("resolverRuleId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy