Class: Aws::NetworkFirewall::Types::MatchAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::MatchAttributes
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_ports ⇒ Array<Types::PortRange>
The destination ports to inspect for.
-
#destinations ⇒ Array<Types::Address>
The destination IP addresses and address ranges to inspect for, in CIDR notation.
-
#protocols ⇒ Array<Integer>
The protocols to inspect for, specified using each protocol's assigned internet protocol number (IANA).
-
#source_ports ⇒ Array<Types::PortRange>
The source ports to inspect for.
-
#sources ⇒ Array<Types::Address>
The source IP addresses and address ranges to inspect for, in CIDR notation.
-
#tcp_flags ⇒ Array<Types::TCPFlagField>
The TCP flags and masks to inspect for.
Instance Attribute Details
#destination_ports ⇒ Array<Types::PortRange>
The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP).
You can specify individual ports, for example 1994
and you can
specify port ranges, for example 1990:1994
.
3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3146 class MatchAttributes < Struct.new( :sources, :destinations, :source_ports, :destination_ports, :protocols, :tcp_flags) SENSITIVE = [] include Aws::Structure end |
#destinations ⇒ Array<Types::Address>
The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address.
3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3146 class MatchAttributes < Struct.new( :sources, :destinations, :source_ports, :destination_ports, :protocols, :tcp_flags) SENSITIVE = [] include Aws::Structure end |
#protocols ⇒ Array<Integer>
The protocols to inspect for, specified using each protocol's assigned internet protocol number (IANA). If not specified, this matches with any protocol.
3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3146 class MatchAttributes < Struct.new( :sources, :destinations, :source_ports, :destination_ports, :protocols, :tcp_flags) SENSITIVE = [] include Aws::Structure end |
#source_ports ⇒ Array<Types::PortRange>
The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP).
You can specify individual ports, for example 1994
and you can
specify port ranges, for example 1990:1994
.
3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3146 class MatchAttributes < Struct.new( :sources, :destinations, :source_ports, :destination_ports, :protocols, :tcp_flags) SENSITIVE = [] include Aws::Structure end |
#sources ⇒ Array<Types::Address>
The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address.
3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3146 class MatchAttributes < Struct.new( :sources, :destinations, :source_ports, :destination_ports, :protocols, :tcp_flags) SENSITIVE = [] include Aws::Structure end |
#tcp_flags ⇒ Array<Types::TCPFlagField>
The TCP flags and masks to inspect for. If not specified, this matches with any settings. This setting is only used for protocol 6 (TCP).
3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 3146 class MatchAttributes < Struct.new( :sources, :destinations, :source_ports, :destination_ports, :protocols, :tcp_flags) SENSITIVE = [] include Aws::Structure end |