Class: Aws::NetworkFirewall::Types::FlowOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::FlowOperation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
Contains information about a flow operation, such as related statuses, unique identifiers, and all filters defined in the operation.
Flow operations let you manage the flows tracked in the flow table, also known as the firewall table.
A flow is network traffic that is monitored by a firewall, either by stateful or stateless rules. For traffic to be considered part of a flow, it must share Destination, DestinationPort, Direction, Protocol, Source, and SourcePort.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flow_filters ⇒ Array<Types::FlowFilter>
Defines the scope a flow operation.
-
#minimum_flow_age_in_seconds ⇒ Integer
The reqested ‘FlowOperation` ignores flows with an age (in seconds) lower than `MinimumFlowAgeInSeconds`.
Instance Attribute Details
#flow_filters ⇒ Array<Types::FlowFilter>
Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation.
4268 4269 4270 4271 4272 4273 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 4268 class FlowOperation < Struct.new( :minimum_flow_age_in_seconds, :flow_filters) SENSITIVE = [] include Aws::Structure end |
#minimum_flow_age_in_seconds ⇒ Integer
The reqested ‘FlowOperation` ignores flows with an age (in seconds) lower than `MinimumFlowAgeInSeconds`. You provide this for start commands.
4268 4269 4270 4271 4272 4273 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 4268 class FlowOperation < Struct.new( :minimum_flow_age_in_seconds, :flow_filters) SENSITIVE = [] include Aws::Structure end |