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

com.pulumi.awsnative.networkfirewall.kotlin.outputs.RuleGroupCustomAction.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.networkfirewall.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property actionDefinition The custom action associated with the action name.
 * @property actionName The descriptive name of the custom action. You can't change the name of a custom action after you create it.
 */
public data class RuleGroupCustomAction(
    public val actionDefinition: RuleGroupActionDefinition,
    public val actionName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.networkfirewall.outputs.RuleGroupCustomAction): RuleGroupCustomAction = RuleGroupCustomAction(
            actionDefinition = javaType.actionDefinition().let({ args0 ->
                com.pulumi.awsnative.networkfirewall.kotlin.outputs.RuleGroupActionDefinition.Companion.toKotlin(args0)
            }),
            actionName = javaType.actionName(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy