All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.networkfirewall.kotlin.inputs.GetRuleGroupPlainArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.networkfirewall.kotlin.inputs

import com.pulumi.awsnative.networkfirewall.inputs.GetRuleGroupPlainArgs.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 ruleGroupArn The Amazon Resource Name (ARN) of the `RuleGroup` .
 */
public data class GetRuleGroupPlainArgs(
    public val ruleGroupArn: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.networkfirewall.inputs.GetRuleGroupPlainArgs =
        com.pulumi.awsnative.networkfirewall.inputs.GetRuleGroupPlainArgs.builder()
            .ruleGroupArn(ruleGroupArn.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetRuleGroupPlainArgs].
 */
@PulumiTagMarker
public class GetRuleGroupPlainArgsBuilder internal constructor() {
    private var ruleGroupArn: String? = null

    /**
     * @param value The Amazon Resource Name (ARN) of the `RuleGroup` .
     */
    @JvmName("ivxdsycwtkejxenr")
    public suspend fun ruleGroupArn(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.ruleGroupArn = mapped
    }

    internal fun build(): GetRuleGroupPlainArgs = GetRuleGroupPlainArgs(
        ruleGroupArn = ruleGroupArn ?: throw PulumiNullFieldException("ruleGroupArn"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy