You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::NetworkFirewall::Types::TCPFlagField

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TCPFlagField as input to an Aws::Client method, you can use a vanilla Hash:

{
  flags: ["FIN"], # required, accepts FIN, SYN, RST, PSH, ACK, URG, ECE, CWR
  masks: ["FIN"], # accepts FIN, SYN, RST, PSH, ACK, URG, ECE, CWR
}

TCP flags and masks to inspect packets for, used in stateless rules MatchAttributes settings.

Instance Attribute Summary collapse

Instance Attribute Details

#flagsArray<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.

Returns:

  • (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.

#masksArray<String>

The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.

Returns:

  • (Array<String>)

    The set of flags to consider in the inspection.