Class: Aws::NetworkFirewall::Types::TCPFlagField
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::TCPFlagField
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
TCP flags and masks to inspect packets for, used in stateless rules MatchAttributes settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flags ⇒ Array<String>
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.
-
#masks ⇒ Array<String>
The set of flags to consider in the inspection.
Instance Attribute Details
#flags ⇒ Array<String>
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.
4049 4050 4051 4052 4053 4054 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 4049 class TCPFlagField < Struct.new( :flags, :masks) SENSITIVE = [] include Aws::Structure end |
#masks ⇒ Array<String>
The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.
4049 4050 4051 4052 4053 4054 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 4049 class TCPFlagField < Struct.new( :flags, :masks) SENSITIVE = [] include Aws::Structure end |