![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.networkfirewall.kotlin.outputs.RuleGroupTcpFlagField.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.networkfirewall.kotlin.outputs
import com.pulumi.awsnative.networkfirewall.kotlin.enums.RuleGroupTcpFlag
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property flags Used in conjunction with the `Masks` setting to define the flags that must be set and flags that must not be set in order for the packet to match. This setting can only specify values that are also specified in the `Masks` setting.
* For the flags that are specified in the masks setting, the following must be true for the packet to match:
* - The ones that are set in this flags setting must be set in the packet.
* - The ones that are not set in this flags setting must also not be set in the packet.
* @property masks The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.
*/
public data class RuleGroupTcpFlagField(
public val flags: List,
public val masks: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.networkfirewall.outputs.RuleGroupTcpFlagField): RuleGroupTcpFlagField = RuleGroupTcpFlagField(
flags = javaType.flags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.networkfirewall.kotlin.enums.RuleGroupTcpFlag.Companion.toKotlin(args0)
})
}),
masks = javaType.masks().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.networkfirewall.kotlin.enums.RuleGroupTcpFlag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy