RegionSecurityPolicyUserDefinedField

data class RegionSecurityPolicyUserDefinedField(val base: String, val mask: String? = null, val name: String? = null, val offset: Int? = null, val size: Int? = null)

Constructors

Link copied to clipboard
constructor(base: String, mask: String? = null, name: String? = null, offset: Int? = null, size: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The base relative to which 'offset' is measured. Possible values are:

Link copied to clipboard
val mask: String? = null

If specified, apply this mask (bitwise AND) to the field to ignore bits before matching. Encoded as a hexadecimal number (starting with "0x"). The last byte of the field (in network byte order) corresponds to the least significant byte of the mask.

Link copied to clipboard
val name: String? = null

The name of this field. Must be unique within the policy.

Link copied to clipboard
val offset: Int? = null

Offset of the first byte of the field (in network byte order) relative to 'base'.

Link copied to clipboard
val size: Int? = null

Size of the field in bytes. Valid values: 1-4.