com.pulumi.awsnative.fms.kotlin.enums.PolicyNetworkAclEntryRuleAction.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.fms.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Rule Action.
*/
public enum class PolicyNetworkAclEntryRuleAction(
public val javaValue: com.pulumi.awsnative.fms.enums.PolicyNetworkAclEntryRuleAction,
) : ConvertibleToJava {
Allow(com.pulumi.awsnative.fms.enums.PolicyNetworkAclEntryRuleAction.Allow),
Deny(com.pulumi.awsnative.fms.enums.PolicyNetworkAclEntryRuleAction.Deny),
;
override fun toJava(): com.pulumi.awsnative.fms.enums.PolicyNetworkAclEntryRuleAction = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.fms.enums.PolicyNetworkAclEntryRuleAction): PolicyNetworkAclEntryRuleAction =
PolicyNetworkAclEntryRuleAction.values().first { it.javaValue == javaType }
}
}