![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.networkfirewall.kotlin.enums.RuleGroupHeaderDirection.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.networkfirewall.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The direction of traffic flow to inspect. If set to `ANY` , the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to `FORWARD` , the inspection only matches traffic going from the source to the destination.
*/
public enum class RuleGroupHeaderDirection(
public val javaValue: com.pulumi.awsnative.networkfirewall.enums.RuleGroupHeaderDirection,
) : ConvertibleToJava {
Forward(com.pulumi.awsnative.networkfirewall.enums.RuleGroupHeaderDirection.Forward),
Any(com.pulumi.awsnative.networkfirewall.enums.RuleGroupHeaderDirection.Any),
;
override fun toJava(): com.pulumi.awsnative.networkfirewall.enums.RuleGroupHeaderDirection =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.networkfirewall.enums.RuleGroupHeaderDirection): RuleGroupHeaderDirection =
RuleGroupHeaderDirection.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy