aws-sdk-networkfirewall 1.61.0 → 1.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkfirewall/client.rb +657 -5
- data/lib/aws-sdk-networkfirewall/client_api.rb +360 -2
- data/lib/aws-sdk-networkfirewall/types.rb +1024 -21
- data/lib/aws-sdk-networkfirewall.rb +1 -1
- data/sig/client.rbs +175 -3
- data/sig/types.rbs +212 -0
- metadata +2 -2
@@ -74,6 +74,45 @@ module Aws::NetworkFirewall
|
|
74
74
|
include Aws::Structure
|
75
75
|
end
|
76
76
|
|
77
|
+
# A report that captures key activity from the last 30 days of network
|
78
|
+
# traffic monitored by your firewall.
|
79
|
+
#
|
80
|
+
# You can generate up to one report per traffic type, per 30 day period.
|
81
|
+
# For example, when you successfully create an HTTP traffic report, you
|
82
|
+
# cannot create another HTTP traffic report until 30 days pass.
|
83
|
+
# Alternatively, if you generate a report that combines metrics on both
|
84
|
+
# HTTP and HTTPS traffic, you cannot create another report for either
|
85
|
+
# traffic type until 30 days pass.
|
86
|
+
#
|
87
|
+
# @!attribute [rw] analysis_report_id
|
88
|
+
# The unique ID of the query that ran when you requested an analysis
|
89
|
+
# report.
|
90
|
+
# @return [String]
|
91
|
+
#
|
92
|
+
# @!attribute [rw] analysis_type
|
93
|
+
# The type of traffic that will be used to generate a report.
|
94
|
+
# @return [String]
|
95
|
+
#
|
96
|
+
# @!attribute [rw] report_time
|
97
|
+
# The date and time the analysis report was ran.
|
98
|
+
# @return [Time]
|
99
|
+
#
|
100
|
+
# @!attribute [rw] status
|
101
|
+
# The status of the analysis report you specify. Statuses include
|
102
|
+
# `RUNNING`, `COMPLETED`, or `FAILED`.
|
103
|
+
# @return [String]
|
104
|
+
#
|
105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/AnalysisReport AWS API Documentation
|
106
|
+
#
|
107
|
+
class AnalysisReport < Struct.new(
|
108
|
+
:analysis_report_id,
|
109
|
+
:analysis_type,
|
110
|
+
:report_time,
|
111
|
+
:status)
|
112
|
+
SENSITIVE = []
|
113
|
+
include Aws::Structure
|
114
|
+
end
|
115
|
+
|
77
116
|
# The analysis result for Network Firewall's stateless rule group
|
78
117
|
# analyzer. Every time you call CreateRuleGroup, UpdateRuleGroup, or
|
79
118
|
# DescribeRuleGroup on a stateless rule group, Network Firewall analyzes
|
@@ -84,6 +123,10 @@ module Aws::NetworkFirewall
|
|
84
123
|
# process traffic, the service includes the rule in a list of analysis
|
85
124
|
# results.
|
86
125
|
#
|
126
|
+
# The `AnalysisResult` data type is not related to traffic analysis
|
127
|
+
# reports you generate using StartAnalysisReport. For information on
|
128
|
+
# traffic analysis report results, see AnalysisTypeReportResult.
|
129
|
+
#
|
87
130
|
# @!attribute [rw] identified_rule_ids
|
88
131
|
# The priority number of the stateless rules identified in the
|
89
132
|
# analysis.
|
@@ -138,6 +181,51 @@ module Aws::NetworkFirewall
|
|
138
181
|
include Aws::Structure
|
139
182
|
end
|
140
183
|
|
184
|
+
# The results of a `COMPLETED` analysis report generated with
|
185
|
+
# StartAnalysisReport.
|
186
|
+
#
|
187
|
+
# For an example of traffic analysis report results, see the response
|
188
|
+
# syntax of GetAnalysisReportResults.
|
189
|
+
#
|
190
|
+
# @!attribute [rw] protocol
|
191
|
+
# The type of traffic captured by the analysis report.
|
192
|
+
# @return [String]
|
193
|
+
#
|
194
|
+
# @!attribute [rw] first_accessed
|
195
|
+
# The date and time any domain was first accessed (within the last 30
|
196
|
+
# day period).
|
197
|
+
# @return [Time]
|
198
|
+
#
|
199
|
+
# @!attribute [rw] last_accessed
|
200
|
+
# The date and time any domain was last accessed (within the last 30
|
201
|
+
# day period).
|
202
|
+
# @return [Time]
|
203
|
+
#
|
204
|
+
# @!attribute [rw] domain
|
205
|
+
# The most frequently accessed domains.
|
206
|
+
# @return [String]
|
207
|
+
#
|
208
|
+
# @!attribute [rw] hits
|
209
|
+
# The number of attempts made to access a observed domain.
|
210
|
+
# @return [Types::Hits]
|
211
|
+
#
|
212
|
+
# @!attribute [rw] unique_sources
|
213
|
+
# The number of unique source IP addresses that connected to a domain.
|
214
|
+
# @return [Types::UniqueSources]
|
215
|
+
#
|
216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/AnalysisTypeReportResult AWS API Documentation
|
217
|
+
#
|
218
|
+
class AnalysisTypeReportResult < Struct.new(
|
219
|
+
:protocol,
|
220
|
+
:first_accessed,
|
221
|
+
:last_accessed,
|
222
|
+
:domain,
|
223
|
+
:hits,
|
224
|
+
:unique_sources)
|
225
|
+
SENSITIVE = []
|
226
|
+
include Aws::Structure
|
227
|
+
end
|
228
|
+
|
141
229
|
# @!attribute [rw] update_token
|
142
230
|
# An optional token that you can use for optimistic locking. Network
|
143
231
|
# Firewall returns a token to your requests that access the firewall.
|
@@ -608,6 +696,11 @@ module Aws::NetworkFirewall
|
|
608
696
|
# firewall resources.
|
609
697
|
# @return [Types::EncryptionConfiguration]
|
610
698
|
#
|
699
|
+
# @!attribute [rw] enabled_analysis_types
|
700
|
+
# An optional setting indicating the specific traffic analysis types
|
701
|
+
# to enable on the firewall.
|
702
|
+
# @return [Array<String>]
|
703
|
+
#
|
611
704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/CreateFirewallRequest AWS API Documentation
|
612
705
|
#
|
613
706
|
class CreateFirewallRequest < Struct.new(
|
@@ -620,7 +713,8 @@ module Aws::NetworkFirewall
|
|
620
713
|
:firewall_policy_change_protection,
|
621
714
|
:description,
|
622
715
|
:tags,
|
623
|
-
:encryption_configuration
|
716
|
+
:encryption_configuration,
|
717
|
+
:enabled_analysis_types)
|
624
718
|
SENSITIVE = []
|
625
719
|
include Aws::Structure
|
626
720
|
end
|
@@ -1268,6 +1362,97 @@ module Aws::NetworkFirewall
|
|
1268
1362
|
include Aws::Structure
|
1269
1363
|
end
|
1270
1364
|
|
1365
|
+
# @!attribute [rw] firewall_arn
|
1366
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
1367
|
+
# @return [String]
|
1368
|
+
#
|
1369
|
+
# @!attribute [rw] availability_zone
|
1370
|
+
# The ID of the Availability Zone where the firewall is located. For
|
1371
|
+
# example, `us-east-2a`.
|
1372
|
+
#
|
1373
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
1374
|
+
# configure a single flow operation.
|
1375
|
+
# @return [String]
|
1376
|
+
#
|
1377
|
+
# @!attribute [rw] flow_operation_id
|
1378
|
+
# A unique identifier for the flow operation. This ID is returned in
|
1379
|
+
# the responses to start and list commands. You provide to describe
|
1380
|
+
# commands.
|
1381
|
+
# @return [String]
|
1382
|
+
#
|
1383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeFlowOperationRequest AWS API Documentation
|
1384
|
+
#
|
1385
|
+
class DescribeFlowOperationRequest < Struct.new(
|
1386
|
+
:firewall_arn,
|
1387
|
+
:availability_zone,
|
1388
|
+
:flow_operation_id)
|
1389
|
+
SENSITIVE = []
|
1390
|
+
include Aws::Structure
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
# @!attribute [rw] firewall_arn
|
1394
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
1395
|
+
# @return [String]
|
1396
|
+
#
|
1397
|
+
# @!attribute [rw] availability_zone
|
1398
|
+
# The ID of the Availability Zone where the firewall is located. For
|
1399
|
+
# example, `us-east-2a`.
|
1400
|
+
#
|
1401
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
1402
|
+
# configure a single flow operation.
|
1403
|
+
# @return [String]
|
1404
|
+
#
|
1405
|
+
# @!attribute [rw] flow_operation_id
|
1406
|
+
# A unique identifier for the flow operation. This ID is returned in
|
1407
|
+
# the responses to start and list commands. You provide to describe
|
1408
|
+
# commands.
|
1409
|
+
# @return [String]
|
1410
|
+
#
|
1411
|
+
# @!attribute [rw] flow_operation_type
|
1412
|
+
# Defines the type of `FlowOperation`.
|
1413
|
+
# @return [String]
|
1414
|
+
#
|
1415
|
+
# @!attribute [rw] flow_operation_status
|
1416
|
+
# Returns the status of the flow operation. This string is returned in
|
1417
|
+
# the responses to start, list, and describe commands.
|
1418
|
+
#
|
1419
|
+
# If the status is `COMPLETED_WITH_ERRORS`, results may be returned
|
1420
|
+
# with any number of `Flows` missing from the response. If the status
|
1421
|
+
# is `FAILED`, `Flows` returned will be empty.
|
1422
|
+
# @return [String]
|
1423
|
+
#
|
1424
|
+
# @!attribute [rw] status_message
|
1425
|
+
# If the asynchronous operation fails, Network Firewall populates this
|
1426
|
+
# with the reason for the error or failure. Options include `Flow
|
1427
|
+
# operation error` and `Flow timeout`.
|
1428
|
+
# @return [String]
|
1429
|
+
#
|
1430
|
+
# @!attribute [rw] flow_request_timestamp
|
1431
|
+
# A timestamp indicating when the Suricata engine identified flows
|
1432
|
+
# impacted by an operation.
|
1433
|
+
# @return [Time]
|
1434
|
+
#
|
1435
|
+
# @!attribute [rw] flow_operation
|
1436
|
+
# Returns key information about a flow operation, such as related
|
1437
|
+
# statuses, unique identifiers, and all filters defined in the
|
1438
|
+
# operation.
|
1439
|
+
# @return [Types::FlowOperation]
|
1440
|
+
#
|
1441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeFlowOperationResponse AWS API Documentation
|
1442
|
+
#
|
1443
|
+
class DescribeFlowOperationResponse < Struct.new(
|
1444
|
+
:firewall_arn,
|
1445
|
+
:availability_zone,
|
1446
|
+
:flow_operation_id,
|
1447
|
+
:flow_operation_type,
|
1448
|
+
:flow_operation_status,
|
1449
|
+
:status_message,
|
1450
|
+
:flow_request_timestamp,
|
1451
|
+
:flow_operation)
|
1452
|
+
SENSITIVE = []
|
1453
|
+
include Aws::Structure
|
1454
|
+
end
|
1455
|
+
|
1271
1456
|
# @!attribute [rw] firewall_arn
|
1272
1457
|
# The Amazon Resource Name (ARN) of the firewall.
|
1273
1458
|
#
|
@@ -1837,6 +2022,11 @@ module Aws::NetworkFirewall
|
|
1837
2022
|
# configuration settings for your firewall.
|
1838
2023
|
# @return [Types::EncryptionConfiguration]
|
1839
2024
|
#
|
2025
|
+
# @!attribute [rw] enabled_analysis_types
|
2026
|
+
# An optional setting indicating the specific traffic analysis types
|
2027
|
+
# to enable on the firewall.
|
2028
|
+
# @return [Array<String>]
|
2029
|
+
#
|
1840
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/Firewall AWS API Documentation
|
1841
2031
|
#
|
1842
2032
|
class Firewall < Struct.new(
|
@@ -1851,7 +2041,8 @@ module Aws::NetworkFirewall
|
|
1851
2041
|
:description,
|
1852
2042
|
:firewall_id,
|
1853
2043
|
:tags,
|
1854
|
-
:encryption_configuration
|
2044
|
+
:encryption_configuration,
|
2045
|
+
:enabled_analysis_types)
|
1855
2046
|
SENSITIVE = []
|
1856
2047
|
include Aws::Structure
|
1857
2048
|
end
|
@@ -2150,6 +2341,179 @@ module Aws::NetworkFirewall
|
|
2150
2341
|
include Aws::Structure
|
2151
2342
|
end
|
2152
2343
|
|
2344
|
+
# Any number of arrays, where each array is a single flow identified in
|
2345
|
+
# the scope of the operation. If multiple flows were in the scope of the
|
2346
|
+
# operation, multiple `Flows` arrays are returned.
|
2347
|
+
#
|
2348
|
+
# @!attribute [rw] source_address
|
2349
|
+
# A single IP address specification. This is used in the
|
2350
|
+
# MatchAttributes source and destination specifications.
|
2351
|
+
# @return [Types::Address]
|
2352
|
+
#
|
2353
|
+
# @!attribute [rw] destination_address
|
2354
|
+
# A single IP address specification. This is used in the
|
2355
|
+
# MatchAttributes source and destination specifications.
|
2356
|
+
# @return [Types::Address]
|
2357
|
+
#
|
2358
|
+
# @!attribute [rw] source_port
|
2359
|
+
# The source port to inspect for. You can specify an individual port,
|
2360
|
+
# for example `1994` and you can specify a port range, for example
|
2361
|
+
# `1990:1994`. To match with any port, specify `ANY`.
|
2362
|
+
# @return [String]
|
2363
|
+
#
|
2364
|
+
# @!attribute [rw] destination_port
|
2365
|
+
# The destination port to inspect for. You can specify an individual
|
2366
|
+
# port, for example `1994` and you can specify a port range, for
|
2367
|
+
# example `1990:1994`. To match with any port, specify `ANY`.
|
2368
|
+
# @return [String]
|
2369
|
+
#
|
2370
|
+
# @!attribute [rw] protocol
|
2371
|
+
# The protocols to inspect for, specified using the assigned internet
|
2372
|
+
# protocol number (IANA) for each protocol. If not specified, this
|
2373
|
+
# matches with any protocol.
|
2374
|
+
# @return [String]
|
2375
|
+
#
|
2376
|
+
# @!attribute [rw] age
|
2377
|
+
# Returned as info about age of the flows identified by the flow
|
2378
|
+
# operation.
|
2379
|
+
# @return [Integer]
|
2380
|
+
#
|
2381
|
+
# @!attribute [rw] packet_count
|
2382
|
+
# Returns the total number of data packets received or transmitted in
|
2383
|
+
# a flow.
|
2384
|
+
# @return [Integer]
|
2385
|
+
#
|
2386
|
+
# @!attribute [rw] byte_count
|
2387
|
+
# Returns the number of bytes received or transmitted in a specific
|
2388
|
+
# flow.
|
2389
|
+
# @return [Integer]
|
2390
|
+
#
|
2391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/Flow AWS API Documentation
|
2392
|
+
#
|
2393
|
+
class Flow < Struct.new(
|
2394
|
+
:source_address,
|
2395
|
+
:destination_address,
|
2396
|
+
:source_port,
|
2397
|
+
:destination_port,
|
2398
|
+
:protocol,
|
2399
|
+
:age,
|
2400
|
+
:packet_count,
|
2401
|
+
:byte_count)
|
2402
|
+
SENSITIVE = []
|
2403
|
+
include Aws::Structure
|
2404
|
+
end
|
2405
|
+
|
2406
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
2407
|
+
# configure a single flow operation.
|
2408
|
+
#
|
2409
|
+
# @!attribute [rw] source_address
|
2410
|
+
# A single IP address specification. This is used in the
|
2411
|
+
# MatchAttributes source and destination specifications.
|
2412
|
+
# @return [Types::Address]
|
2413
|
+
#
|
2414
|
+
# @!attribute [rw] destination_address
|
2415
|
+
# A single IP address specification. This is used in the
|
2416
|
+
# MatchAttributes source and destination specifications.
|
2417
|
+
# @return [Types::Address]
|
2418
|
+
#
|
2419
|
+
# @!attribute [rw] source_port
|
2420
|
+
# The source port to inspect for. You can specify an individual port,
|
2421
|
+
# for example `1994` and you can specify a port range, for example
|
2422
|
+
# `1990:1994`. To match with any port, specify `ANY`.
|
2423
|
+
# @return [String]
|
2424
|
+
#
|
2425
|
+
# @!attribute [rw] destination_port
|
2426
|
+
# The destination port to inspect for. You can specify an individual
|
2427
|
+
# port, for example `1994` and you can specify a port range, for
|
2428
|
+
# example `1990:1994`. To match with any port, specify `ANY`.
|
2429
|
+
# @return [String]
|
2430
|
+
#
|
2431
|
+
# @!attribute [rw] protocols
|
2432
|
+
# The protocols to inspect for, specified using the assigned internet
|
2433
|
+
# protocol number (IANA) for each protocol. If not specified, this
|
2434
|
+
# matches with any protocol.
|
2435
|
+
# @return [Array<String>]
|
2436
|
+
#
|
2437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/FlowFilter AWS API Documentation
|
2438
|
+
#
|
2439
|
+
class FlowFilter < Struct.new(
|
2440
|
+
:source_address,
|
2441
|
+
:destination_address,
|
2442
|
+
:source_port,
|
2443
|
+
:destination_port,
|
2444
|
+
:protocols)
|
2445
|
+
SENSITIVE = []
|
2446
|
+
include Aws::Structure
|
2447
|
+
end
|
2448
|
+
|
2449
|
+
# Contains information about a flow operation, such as related statuses,
|
2450
|
+
# unique identifiers, and all filters defined in the operation.
|
2451
|
+
#
|
2452
|
+
# Flow operations let you manage the flows tracked in the flow table,
|
2453
|
+
# also known as the firewall table.
|
2454
|
+
#
|
2455
|
+
# A flow is network traffic that is monitored by a firewall, either by
|
2456
|
+
# stateful or stateless rules. For traffic to be considered part of a
|
2457
|
+
# flow, it must share Destination, DestinationPort, Direction, Protocol,
|
2458
|
+
# Source, and SourcePort.
|
2459
|
+
#
|
2460
|
+
# @!attribute [rw] minimum_flow_age_in_seconds
|
2461
|
+
# The reqested `FlowOperation` ignores flows with an age (in seconds)
|
2462
|
+
# lower than `MinimumFlowAgeInSeconds`. You provide this for start
|
2463
|
+
# commands.
|
2464
|
+
# @return [Integer]
|
2465
|
+
#
|
2466
|
+
# @!attribute [rw] flow_filters
|
2467
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
2468
|
+
# configure a single flow operation.
|
2469
|
+
# @return [Array<Types::FlowFilter>]
|
2470
|
+
#
|
2471
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/FlowOperation AWS API Documentation
|
2472
|
+
#
|
2473
|
+
class FlowOperation < Struct.new(
|
2474
|
+
:minimum_flow_age_in_seconds,
|
2475
|
+
:flow_filters)
|
2476
|
+
SENSITIVE = []
|
2477
|
+
include Aws::Structure
|
2478
|
+
end
|
2479
|
+
|
2480
|
+
# An array of objects with metadata about the requested `FlowOperation`.
|
2481
|
+
#
|
2482
|
+
# @!attribute [rw] flow_operation_id
|
2483
|
+
# A unique identifier for the flow operation. This ID is returned in
|
2484
|
+
# the responses to start and list commands. You provide to describe
|
2485
|
+
# commands.
|
2486
|
+
# @return [String]
|
2487
|
+
#
|
2488
|
+
# @!attribute [rw] flow_operation_type
|
2489
|
+
# Defines the type of `FlowOperation`.
|
2490
|
+
# @return [String]
|
2491
|
+
#
|
2492
|
+
# @!attribute [rw] flow_request_timestamp
|
2493
|
+
# A timestamp indicating when the Suricata engine identified flows
|
2494
|
+
# impacted by an operation.
|
2495
|
+
# @return [Time]
|
2496
|
+
#
|
2497
|
+
# @!attribute [rw] flow_operation_status
|
2498
|
+
# Returns the status of the flow operation. This string is returned in
|
2499
|
+
# the responses to start, list, and describe commands.
|
2500
|
+
#
|
2501
|
+
# If the status is `COMPLETED_WITH_ERRORS`, results may be returned
|
2502
|
+
# with any number of `Flows` missing from the response. If the status
|
2503
|
+
# is `FAILED`, `Flows` returned will be empty.
|
2504
|
+
# @return [String]
|
2505
|
+
#
|
2506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/FlowOperationMetadata AWS API Documentation
|
2507
|
+
#
|
2508
|
+
class FlowOperationMetadata < Struct.new(
|
2509
|
+
:flow_operation_id,
|
2510
|
+
:flow_operation_type,
|
2511
|
+
:flow_request_timestamp,
|
2512
|
+
:flow_operation_status)
|
2513
|
+
SENSITIVE = []
|
2514
|
+
include Aws::Structure
|
2515
|
+
end
|
2516
|
+
|
2153
2517
|
# Describes the amount of time that can pass without any traffic sent
|
2154
2518
|
# through the firewall before the firewall determines that the
|
2155
2519
|
# connection is idle and Network Firewall removes the flow entry from
|
@@ -2178,6 +2542,102 @@ module Aws::NetworkFirewall
|
|
2178
2542
|
include Aws::Structure
|
2179
2543
|
end
|
2180
2544
|
|
2545
|
+
# @!attribute [rw] firewall_name
|
2546
|
+
# The descriptive name of the firewall. You can't change the name of
|
2547
|
+
# a firewall after you create it.
|
2548
|
+
#
|
2549
|
+
# You must specify the ARN or the name, and you can specify both.
|
2550
|
+
# @return [String]
|
2551
|
+
#
|
2552
|
+
# @!attribute [rw] analysis_report_id
|
2553
|
+
# The unique ID of the query that ran when you requested an analysis
|
2554
|
+
# report.
|
2555
|
+
# @return [String]
|
2556
|
+
#
|
2557
|
+
# @!attribute [rw] firewall_arn
|
2558
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
2559
|
+
#
|
2560
|
+
# You must specify the ARN or the name, and you can specify both.
|
2561
|
+
# @return [String]
|
2562
|
+
#
|
2563
|
+
# @!attribute [rw] next_token
|
2564
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
2565
|
+
# the number of objects that are still available for retrieval exceeds
|
2566
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
2567
|
+
# value in the response. To retrieve the next batch of objects, use
|
2568
|
+
# the token returned from the prior request in your next request.
|
2569
|
+
# @return [String]
|
2570
|
+
#
|
2571
|
+
# @!attribute [rw] max_results
|
2572
|
+
# The maximum number of objects that you want Network Firewall to
|
2573
|
+
# return for this request. If more objects are available, in the
|
2574
|
+
# response, Network Firewall provides a `NextToken` value that you can
|
2575
|
+
# use in a subsequent call to get the next batch of objects.
|
2576
|
+
# @return [Integer]
|
2577
|
+
#
|
2578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/GetAnalysisReportResultsRequest AWS API Documentation
|
2579
|
+
#
|
2580
|
+
class GetAnalysisReportResultsRequest < Struct.new(
|
2581
|
+
:firewall_name,
|
2582
|
+
:analysis_report_id,
|
2583
|
+
:firewall_arn,
|
2584
|
+
:next_token,
|
2585
|
+
:max_results)
|
2586
|
+
SENSITIVE = []
|
2587
|
+
include Aws::Structure
|
2588
|
+
end
|
2589
|
+
|
2590
|
+
# @!attribute [rw] status
|
2591
|
+
# The status of the analysis report you specify. Statuses include
|
2592
|
+
# `RUNNING`, `COMPLETED`, or `FAILED`.
|
2593
|
+
# @return [String]
|
2594
|
+
#
|
2595
|
+
# @!attribute [rw] start_time
|
2596
|
+
# The date and time within the last 30 days from which to start
|
2597
|
+
# retrieving analysis data, in UTC format (for example,
|
2598
|
+
# `YYYY-MM-DDTHH:MM:SSZ`.
|
2599
|
+
# @return [Time]
|
2600
|
+
#
|
2601
|
+
# @!attribute [rw] end_time
|
2602
|
+
# The date and time, up to the current date, from which to stop
|
2603
|
+
# retrieving analysis data, in UTC format (for example,
|
2604
|
+
# `YYYY-MM-DDTHH:MM:SSZ`).
|
2605
|
+
# @return [Time]
|
2606
|
+
#
|
2607
|
+
# @!attribute [rw] report_time
|
2608
|
+
# The date and time the analysis report was ran.
|
2609
|
+
# @return [Time]
|
2610
|
+
#
|
2611
|
+
# @!attribute [rw] analysis_type
|
2612
|
+
# The type of traffic that will be used to generate a report.
|
2613
|
+
# @return [String]
|
2614
|
+
#
|
2615
|
+
# @!attribute [rw] next_token
|
2616
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
2617
|
+
# the number of objects that are still available for retrieval exceeds
|
2618
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
2619
|
+
# value in the response. To retrieve the next batch of objects, use
|
2620
|
+
# the token returned from the prior request in your next request.
|
2621
|
+
# @return [String]
|
2622
|
+
#
|
2623
|
+
# @!attribute [rw] analysis_report_results
|
2624
|
+
# Retrieves the results of a traffic analysis report.
|
2625
|
+
# @return [Array<Types::AnalysisTypeReportResult>]
|
2626
|
+
#
|
2627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/GetAnalysisReportResultsResponse AWS API Documentation
|
2628
|
+
#
|
2629
|
+
class GetAnalysisReportResultsResponse < Struct.new(
|
2630
|
+
:status,
|
2631
|
+
:start_time,
|
2632
|
+
:end_time,
|
2633
|
+
:report_time,
|
2634
|
+
:analysis_type,
|
2635
|
+
:next_token,
|
2636
|
+
:analysis_report_results)
|
2637
|
+
SENSITIVE = []
|
2638
|
+
include Aws::Structure
|
2639
|
+
end
|
2640
|
+
|
2181
2641
|
# The basic rule criteria for Network Firewall to use to inspect packet
|
2182
2642
|
# headers in stateful traffic flow inspection. Traffic flows that match
|
2183
2643
|
# the criteria are a match for the corresponding StatefulRule.
|
@@ -2287,6 +2747,20 @@ module Aws::NetworkFirewall
|
|
2287
2747
|
include Aws::Structure
|
2288
2748
|
end
|
2289
2749
|
|
2750
|
+
# Attempts made to a access domain.
|
2751
|
+
#
|
2752
|
+
# @!attribute [rw] count
|
2753
|
+
# The number of attempts made to access a domain.
|
2754
|
+
# @return [Integer]
|
2755
|
+
#
|
2756
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/Hits AWS API Documentation
|
2757
|
+
#
|
2758
|
+
class Hits < Struct.new(
|
2759
|
+
:count)
|
2760
|
+
SENSITIVE = []
|
2761
|
+
include Aws::Structure
|
2762
|
+
end
|
2763
|
+
|
2290
2764
|
# A list of IP addresses and address ranges, in CIDR notation. This is
|
2291
2765
|
# part of a RuleVariables.
|
2292
2766
|
#
|
@@ -2457,6 +2931,67 @@ module Aws::NetworkFirewall
|
|
2457
2931
|
include Aws::Structure
|
2458
2932
|
end
|
2459
2933
|
|
2934
|
+
# @!attribute [rw] firewall_name
|
2935
|
+
# The descriptive name of the firewall. You can't change the name of
|
2936
|
+
# a firewall after you create it.
|
2937
|
+
#
|
2938
|
+
# You must specify the ARN or the name, and you can specify both.
|
2939
|
+
# @return [String]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] firewall_arn
|
2942
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
2943
|
+
#
|
2944
|
+
# You must specify the ARN or the name, and you can specify both.
|
2945
|
+
# @return [String]
|
2946
|
+
#
|
2947
|
+
# @!attribute [rw] next_token
|
2948
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
2949
|
+
# the number of objects that are still available for retrieval exceeds
|
2950
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
2951
|
+
# value in the response. To retrieve the next batch of objects, use
|
2952
|
+
# the token returned from the prior request in your next request.
|
2953
|
+
# @return [String]
|
2954
|
+
#
|
2955
|
+
# @!attribute [rw] max_results
|
2956
|
+
# The maximum number of objects that you want Network Firewall to
|
2957
|
+
# return for this request. If more objects are available, in the
|
2958
|
+
# response, Network Firewall provides a `NextToken` value that you can
|
2959
|
+
# use in a subsequent call to get the next batch of objects.
|
2960
|
+
# @return [Integer]
|
2961
|
+
#
|
2962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListAnalysisReportsRequest AWS API Documentation
|
2963
|
+
#
|
2964
|
+
class ListAnalysisReportsRequest < Struct.new(
|
2965
|
+
:firewall_name,
|
2966
|
+
:firewall_arn,
|
2967
|
+
:next_token,
|
2968
|
+
:max_results)
|
2969
|
+
SENSITIVE = []
|
2970
|
+
include Aws::Structure
|
2971
|
+
end
|
2972
|
+
|
2973
|
+
# @!attribute [rw] analysis_reports
|
2974
|
+
# The `id` and `ReportTime` associated with a requested analysis
|
2975
|
+
# report. Does not provide the status of the analysis report.
|
2976
|
+
# @return [Array<Types::AnalysisReport>]
|
2977
|
+
#
|
2978
|
+
# @!attribute [rw] next_token
|
2979
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
2980
|
+
# the number of objects that are still available for retrieval exceeds
|
2981
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
2982
|
+
# value in the response. To retrieve the next batch of objects, use
|
2983
|
+
# the token returned from the prior request in your next request.
|
2984
|
+
# @return [String]
|
2985
|
+
#
|
2986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListAnalysisReportsResponse AWS API Documentation
|
2987
|
+
#
|
2988
|
+
class ListAnalysisReportsResponse < Struct.new(
|
2989
|
+
:analysis_reports,
|
2990
|
+
:next_token)
|
2991
|
+
SENSITIVE = []
|
2992
|
+
include Aws::Structure
|
2993
|
+
end
|
2994
|
+
|
2460
2995
|
# @!attribute [rw] next_token
|
2461
2996
|
# When you request a list of objects with a `MaxResults` setting, if
|
2462
2997
|
# the number of objects that are still available for retrieval exceeds
|
@@ -2558,6 +3093,189 @@ module Aws::NetworkFirewall
|
|
2558
3093
|
include Aws::Structure
|
2559
3094
|
end
|
2560
3095
|
|
3096
|
+
# @!attribute [rw] firewall_arn
|
3097
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
3098
|
+
# @return [String]
|
3099
|
+
#
|
3100
|
+
# @!attribute [rw] flow_operation_id
|
3101
|
+
# A unique identifier for the flow operation. This ID is returned in
|
3102
|
+
# the responses to start and list commands. You provide to describe
|
3103
|
+
# commands.
|
3104
|
+
# @return [String]
|
3105
|
+
#
|
3106
|
+
# @!attribute [rw] next_token
|
3107
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
3108
|
+
# the number of objects that are still available for retrieval exceeds
|
3109
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
3110
|
+
# value in the response. To retrieve the next batch of objects, use
|
3111
|
+
# the token returned from the prior request in your next request.
|
3112
|
+
# @return [String]
|
3113
|
+
#
|
3114
|
+
# @!attribute [rw] max_results
|
3115
|
+
# The maximum number of objects that you want Network Firewall to
|
3116
|
+
# return for this request. If more objects are available, in the
|
3117
|
+
# response, Network Firewall provides a `NextToken` value that you can
|
3118
|
+
# use in a subsequent call to get the next batch of objects.
|
3119
|
+
# @return [Integer]
|
3120
|
+
#
|
3121
|
+
# @!attribute [rw] availability_zone
|
3122
|
+
# The ID of the Availability Zone where the firewall is located. For
|
3123
|
+
# example, `us-east-2a`.
|
3124
|
+
#
|
3125
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
3126
|
+
# configure a single flow operation.
|
3127
|
+
# @return [String]
|
3128
|
+
#
|
3129
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListFlowOperationResultsRequest AWS API Documentation
|
3130
|
+
#
|
3131
|
+
class ListFlowOperationResultsRequest < Struct.new(
|
3132
|
+
:firewall_arn,
|
3133
|
+
:flow_operation_id,
|
3134
|
+
:next_token,
|
3135
|
+
:max_results,
|
3136
|
+
:availability_zone)
|
3137
|
+
SENSITIVE = []
|
3138
|
+
include Aws::Structure
|
3139
|
+
end
|
3140
|
+
|
3141
|
+
# @!attribute [rw] firewall_arn
|
3142
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
3143
|
+
# @return [String]
|
3144
|
+
#
|
3145
|
+
# @!attribute [rw] availability_zone
|
3146
|
+
# The ID of the Availability Zone where the firewall is located. For
|
3147
|
+
# example, `us-east-2a`.
|
3148
|
+
#
|
3149
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
3150
|
+
# configure a single flow operation.
|
3151
|
+
# @return [String]
|
3152
|
+
#
|
3153
|
+
# @!attribute [rw] flow_operation_id
|
3154
|
+
# A unique identifier for the flow operation. This ID is returned in
|
3155
|
+
# the responses to start and list commands. You provide to describe
|
3156
|
+
# commands.
|
3157
|
+
# @return [String]
|
3158
|
+
#
|
3159
|
+
# @!attribute [rw] flow_operation_status
|
3160
|
+
# Returns the status of the flow operation. This string is returned in
|
3161
|
+
# the responses to start, list, and describe commands.
|
3162
|
+
#
|
3163
|
+
# If the status is `COMPLETED_WITH_ERRORS`, results may be returned
|
3164
|
+
# with any number of `Flows` missing from the response. If the status
|
3165
|
+
# is `FAILED`, `Flows` returned will be empty.
|
3166
|
+
# @return [String]
|
3167
|
+
#
|
3168
|
+
# @!attribute [rw] status_message
|
3169
|
+
# If the asynchronous operation fails, Network Firewall populates this
|
3170
|
+
# with the reason for the error or failure. Options include `Flow
|
3171
|
+
# operation error` and `Flow timeout`.
|
3172
|
+
# @return [String]
|
3173
|
+
#
|
3174
|
+
# @!attribute [rw] flow_request_timestamp
|
3175
|
+
# A timestamp indicating when the Suricata engine identified flows
|
3176
|
+
# impacted by an operation.
|
3177
|
+
# @return [Time]
|
3178
|
+
#
|
3179
|
+
# @!attribute [rw] flows
|
3180
|
+
# Any number of arrays, where each array is a single flow identified
|
3181
|
+
# in the scope of the operation. If multiple flows were in the scope
|
3182
|
+
# of the operation, multiple `Flows` arrays are returned.
|
3183
|
+
# @return [Array<Types::Flow>]
|
3184
|
+
#
|
3185
|
+
# @!attribute [rw] next_token
|
3186
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
3187
|
+
# the number of objects that are still available for retrieval exceeds
|
3188
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
3189
|
+
# value in the response. To retrieve the next batch of objects, use
|
3190
|
+
# the token returned from the prior request in your next request.
|
3191
|
+
# @return [String]
|
3192
|
+
#
|
3193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListFlowOperationResultsResponse AWS API Documentation
|
3194
|
+
#
|
3195
|
+
class ListFlowOperationResultsResponse < Struct.new(
|
3196
|
+
:firewall_arn,
|
3197
|
+
:availability_zone,
|
3198
|
+
:flow_operation_id,
|
3199
|
+
:flow_operation_status,
|
3200
|
+
:status_message,
|
3201
|
+
:flow_request_timestamp,
|
3202
|
+
:flows,
|
3203
|
+
:next_token)
|
3204
|
+
SENSITIVE = []
|
3205
|
+
include Aws::Structure
|
3206
|
+
end
|
3207
|
+
|
3208
|
+
# @!attribute [rw] firewall_arn
|
3209
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
3210
|
+
# @return [String]
|
3211
|
+
#
|
3212
|
+
# @!attribute [rw] availability_zone
|
3213
|
+
# The ID of the Availability Zone where the firewall is located. For
|
3214
|
+
# example, `us-east-2a`.
|
3215
|
+
#
|
3216
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
3217
|
+
# configure a single flow operation.
|
3218
|
+
# @return [String]
|
3219
|
+
#
|
3220
|
+
# @!attribute [rw] flow_operation_type
|
3221
|
+
# An optional string that defines whether any or all operation types
|
3222
|
+
# are returned.
|
3223
|
+
# @return [String]
|
3224
|
+
#
|
3225
|
+
# @!attribute [rw] next_token
|
3226
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
3227
|
+
# the number of objects that are still available for retrieval exceeds
|
3228
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
3229
|
+
# value in the response. To retrieve the next batch of objects, use
|
3230
|
+
# the token returned from the prior request in your next request.
|
3231
|
+
# @return [String]
|
3232
|
+
#
|
3233
|
+
# @!attribute [rw] max_results
|
3234
|
+
# The maximum number of objects that you want Network Firewall to
|
3235
|
+
# return for this request. If more objects are available, in the
|
3236
|
+
# response, Network Firewall provides a `NextToken` value that you can
|
3237
|
+
# use in a subsequent call to get the next batch of objects.
|
3238
|
+
# @return [Integer]
|
3239
|
+
#
|
3240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListFlowOperationsRequest AWS API Documentation
|
3241
|
+
#
|
3242
|
+
class ListFlowOperationsRequest < Struct.new(
|
3243
|
+
:firewall_arn,
|
3244
|
+
:availability_zone,
|
3245
|
+
:flow_operation_type,
|
3246
|
+
:next_token,
|
3247
|
+
:max_results)
|
3248
|
+
SENSITIVE = []
|
3249
|
+
include Aws::Structure
|
3250
|
+
end
|
3251
|
+
|
3252
|
+
# @!attribute [rw] flow_operations
|
3253
|
+
# Flow operations let you manage the flows tracked in the flow table,
|
3254
|
+
# also known as the firewall table.
|
3255
|
+
#
|
3256
|
+
# A flow is network traffic that is monitored by a firewall, either by
|
3257
|
+
# stateful or stateless rules. For traffic to be considered part of a
|
3258
|
+
# flow, it must share Destination, DestinationPort, Direction,
|
3259
|
+
# Protocol, Source, and SourcePort.
|
3260
|
+
# @return [Array<Types::FlowOperationMetadata>]
|
3261
|
+
#
|
3262
|
+
# @!attribute [rw] next_token
|
3263
|
+
# When you request a list of objects with a `MaxResults` setting, if
|
3264
|
+
# the number of objects that are still available for retrieval exceeds
|
3265
|
+
# the maximum you requested, Network Firewall returns a `NextToken`
|
3266
|
+
# value in the response. To retrieve the next batch of objects, use
|
3267
|
+
# the token returned from the prior request in your next request.
|
3268
|
+
# @return [String]
|
3269
|
+
#
|
3270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListFlowOperationsResponse AWS API Documentation
|
3271
|
+
#
|
3272
|
+
class ListFlowOperationsResponse < Struct.new(
|
3273
|
+
:flow_operations,
|
3274
|
+
:next_token)
|
3275
|
+
SENSITIVE = []
|
3276
|
+
include Aws::Structure
|
3277
|
+
end
|
3278
|
+
|
2561
3279
|
# @!attribute [rw] next_token
|
2562
3280
|
# When you request a list of objects with a `MaxResults` setting, if
|
2563
3281
|
# the number of objects that are still available for retrieval exceeds
|
@@ -2841,26 +3559,26 @@ module Aws::NetworkFirewall
|
|
2841
3559
|
# @return [Array<Types::Address>]
|
2842
3560
|
#
|
2843
3561
|
# @!attribute [rw] source_ports
|
2844
|
-
# The source
|
2845
|
-
#
|
2846
|
-
#
|
3562
|
+
# The source port to inspect for. You can specify an individual port,
|
3563
|
+
# for example `1994` and you can specify a port range, for example
|
3564
|
+
# `1990:1994`. To match with any port, specify `ANY`.
|
2847
3565
|
#
|
2848
|
-
#
|
2849
|
-
#
|
3566
|
+
# If not specified, this matches with any source port.
|
3567
|
+
#
|
3568
|
+
# This setting is only used for protocols 6 (TCP) and 17 (UDP).
|
2850
3569
|
# @return [Array<Types::PortRange>]
|
2851
3570
|
#
|
2852
3571
|
# @!attribute [rw] destination_ports
|
2853
|
-
# The destination
|
2854
|
-
#
|
2855
|
-
#
|
3572
|
+
# The destination port to inspect for. You can specify an individual
|
3573
|
+
# port, for example `1994` and you can specify a port range, for
|
3574
|
+
# example `1990:1994`. To match with any port, specify `ANY`.
|
2856
3575
|
#
|
2857
|
-
#
|
2858
|
-
# specify port ranges, for example `1990:1994`.
|
3576
|
+
# This setting is only used for protocols 6 (TCP) and 17 (UDP).
|
2859
3577
|
# @return [Array<Types::PortRange>]
|
2860
3578
|
#
|
2861
3579
|
# @!attribute [rw] protocols
|
2862
|
-
# The protocols to inspect for, specified using
|
2863
|
-
#
|
3580
|
+
# The protocols to inspect for, specified using the assigned internet
|
3581
|
+
# protocol number (IANA) for each protocol. If not specified, this
|
2864
3582
|
# matches with any protocol.
|
2865
3583
|
# @return [Array<Integer>]
|
2866
3584
|
#
|
@@ -3331,7 +4049,7 @@ module Aws::NetworkFirewall
|
|
3331
4049
|
#
|
3332
4050
|
#
|
3333
4051
|
#
|
3334
|
-
# [1]: https://suricata.readthedocs.io/en/suricata-
|
4052
|
+
# [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html#rule-options
|
3335
4053
|
# @return [String]
|
3336
4054
|
#
|
3337
4055
|
# @!attribute [rw] settings
|
@@ -3342,7 +4060,7 @@ module Aws::NetworkFirewall
|
|
3342
4060
|
#
|
3343
4061
|
#
|
3344
4062
|
#
|
3345
|
-
# [1]: https://suricata.readthedocs.io/en/suricata-
|
4063
|
+
# [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html#rule-options
|
3346
4064
|
# @return [Array<String>]
|
3347
4065
|
#
|
3348
4066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/RuleOption AWS API Documentation
|
@@ -3406,7 +4124,7 @@ module Aws::NetworkFirewall
|
|
3406
4124
|
#
|
3407
4125
|
#
|
3408
4126
|
#
|
3409
|
-
# [1]: https://suricata.readthedocs.io/en/suricata-
|
4127
|
+
# [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html
|
3410
4128
|
# @return [Array<Types::StatefulRule>]
|
3411
4129
|
#
|
3412
4130
|
# @!attribute [rw] stateless_rules_and_custom_actions
|
@@ -3615,9 +4333,11 @@ module Aws::NetworkFirewall
|
|
3615
4333
|
# @return [Array<Types::PortRange>]
|
3616
4334
|
#
|
3617
4335
|
# @!attribute [rw] protocols
|
3618
|
-
# The protocols to
|
3619
|
-
# protocol
|
3620
|
-
#
|
4336
|
+
# The protocols to inspect for, specified using the assigned internet
|
4337
|
+
# protocol number (IANA) for each protocol. If not specified, this
|
4338
|
+
# matches with any protocol.
|
4339
|
+
#
|
4340
|
+
# Network Firewall currently supports only TCP.
|
3621
4341
|
# @return [Array<Integer>]
|
3622
4342
|
#
|
3623
4343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ServerCertificateScope AWS API Documentation
|
@@ -3665,6 +4385,177 @@ module Aws::NetworkFirewall
|
|
3665
4385
|
include Aws::Structure
|
3666
4386
|
end
|
3667
4387
|
|
4388
|
+
# @!attribute [rw] firewall_name
|
4389
|
+
# The descriptive name of the firewall. You can't change the name of
|
4390
|
+
# a firewall after you create it.
|
4391
|
+
#
|
4392
|
+
# You must specify the ARN or the name, and you can specify both.
|
4393
|
+
# @return [String]
|
4394
|
+
#
|
4395
|
+
# @!attribute [rw] firewall_arn
|
4396
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
4397
|
+
#
|
4398
|
+
# You must specify the ARN or the name, and you can specify both.
|
4399
|
+
# @return [String]
|
4400
|
+
#
|
4401
|
+
# @!attribute [rw] analysis_type
|
4402
|
+
# The type of traffic that will be used to generate a report.
|
4403
|
+
# @return [String]
|
4404
|
+
#
|
4405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/StartAnalysisReportRequest AWS API Documentation
|
4406
|
+
#
|
4407
|
+
class StartAnalysisReportRequest < Struct.new(
|
4408
|
+
:firewall_name,
|
4409
|
+
:firewall_arn,
|
4410
|
+
:analysis_type)
|
4411
|
+
SENSITIVE = []
|
4412
|
+
include Aws::Structure
|
4413
|
+
end
|
4414
|
+
|
4415
|
+
# @!attribute [rw] analysis_report_id
|
4416
|
+
# The unique ID of the query that ran when you requested an analysis
|
4417
|
+
# report.
|
4418
|
+
# @return [String]
|
4419
|
+
#
|
4420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/StartAnalysisReportResponse AWS API Documentation
|
4421
|
+
#
|
4422
|
+
class StartAnalysisReportResponse < Struct.new(
|
4423
|
+
:analysis_report_id)
|
4424
|
+
SENSITIVE = []
|
4425
|
+
include Aws::Structure
|
4426
|
+
end
|
4427
|
+
|
4428
|
+
# @!attribute [rw] firewall_arn
|
4429
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
4430
|
+
# @return [String]
|
4431
|
+
#
|
4432
|
+
# @!attribute [rw] availability_zone
|
4433
|
+
# The ID of the Availability Zone where the firewall is located. For
|
4434
|
+
# example, `us-east-2a`.
|
4435
|
+
#
|
4436
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
4437
|
+
# configure a single flow operation.
|
4438
|
+
# @return [String]
|
4439
|
+
#
|
4440
|
+
# @!attribute [rw] minimum_flow_age_in_seconds
|
4441
|
+
# The reqested `FlowOperation` ignores flows with an age (in seconds)
|
4442
|
+
# lower than `MinimumFlowAgeInSeconds`. You provide this for start
|
4443
|
+
# commands.
|
4444
|
+
#
|
4445
|
+
# <note markdown="1"> We recommend setting this value to at least 1 minute (60 seconds) to
|
4446
|
+
# reduce chance of capturing flows that are not yet established.
|
4447
|
+
#
|
4448
|
+
# </note>
|
4449
|
+
# @return [Integer]
|
4450
|
+
#
|
4451
|
+
# @!attribute [rw] flow_filters
|
4452
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
4453
|
+
# configure a single flow operation.
|
4454
|
+
# @return [Array<Types::FlowFilter>]
|
4455
|
+
#
|
4456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/StartFlowCaptureRequest AWS API Documentation
|
4457
|
+
#
|
4458
|
+
class StartFlowCaptureRequest < Struct.new(
|
4459
|
+
:firewall_arn,
|
4460
|
+
:availability_zone,
|
4461
|
+
:minimum_flow_age_in_seconds,
|
4462
|
+
:flow_filters)
|
4463
|
+
SENSITIVE = []
|
4464
|
+
include Aws::Structure
|
4465
|
+
end
|
4466
|
+
|
4467
|
+
# @!attribute [rw] firewall_arn
|
4468
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
4469
|
+
# @return [String]
|
4470
|
+
#
|
4471
|
+
# @!attribute [rw] flow_operation_id
|
4472
|
+
# A unique identifier for the flow operation. This ID is returned in
|
4473
|
+
# the responses to start and list commands. You provide to describe
|
4474
|
+
# commands.
|
4475
|
+
# @return [String]
|
4476
|
+
#
|
4477
|
+
# @!attribute [rw] flow_operation_status
|
4478
|
+
# Returns the status of the flow operation. This string is returned in
|
4479
|
+
# the responses to start, list, and describe commands.
|
4480
|
+
#
|
4481
|
+
# If the status is `COMPLETED_WITH_ERRORS`, results may be returned
|
4482
|
+
# with any number of `Flows` missing from the response. If the status
|
4483
|
+
# is `FAILED`, `Flows` returned will be empty.
|
4484
|
+
# @return [String]
|
4485
|
+
#
|
4486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/StartFlowCaptureResponse AWS API Documentation
|
4487
|
+
#
|
4488
|
+
class StartFlowCaptureResponse < Struct.new(
|
4489
|
+
:firewall_arn,
|
4490
|
+
:flow_operation_id,
|
4491
|
+
:flow_operation_status)
|
4492
|
+
SENSITIVE = []
|
4493
|
+
include Aws::Structure
|
4494
|
+
end
|
4495
|
+
|
4496
|
+
# @!attribute [rw] firewall_arn
|
4497
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
4498
|
+
# @return [String]
|
4499
|
+
#
|
4500
|
+
# @!attribute [rw] availability_zone
|
4501
|
+
# The ID of the Availability Zone where the firewall is located. For
|
4502
|
+
# example, `us-east-2a`.
|
4503
|
+
#
|
4504
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
4505
|
+
# configure a single flow operation.
|
4506
|
+
# @return [String]
|
4507
|
+
#
|
4508
|
+
# @!attribute [rw] minimum_flow_age_in_seconds
|
4509
|
+
# The reqested `FlowOperation` ignores flows with an age (in seconds)
|
4510
|
+
# lower than `MinimumFlowAgeInSeconds`. You provide this for start
|
4511
|
+
# commands.
|
4512
|
+
# @return [Integer]
|
4513
|
+
#
|
4514
|
+
# @!attribute [rw] flow_filters
|
4515
|
+
# Defines the scope a flow operation. You can use up to 20 filters to
|
4516
|
+
# configure a single flow operation.
|
4517
|
+
# @return [Array<Types::FlowFilter>]
|
4518
|
+
#
|
4519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/StartFlowFlushRequest AWS API Documentation
|
4520
|
+
#
|
4521
|
+
class StartFlowFlushRequest < Struct.new(
|
4522
|
+
:firewall_arn,
|
4523
|
+
:availability_zone,
|
4524
|
+
:minimum_flow_age_in_seconds,
|
4525
|
+
:flow_filters)
|
4526
|
+
SENSITIVE = []
|
4527
|
+
include Aws::Structure
|
4528
|
+
end
|
4529
|
+
|
4530
|
+
# @!attribute [rw] firewall_arn
|
4531
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
4532
|
+
# @return [String]
|
4533
|
+
#
|
4534
|
+
# @!attribute [rw] flow_operation_id
|
4535
|
+
# A unique identifier for the flow operation. This ID is returned in
|
4536
|
+
# the responses to start and list commands. You provide to describe
|
4537
|
+
# commands.
|
4538
|
+
# @return [String]
|
4539
|
+
#
|
4540
|
+
# @!attribute [rw] flow_operation_status
|
4541
|
+
# Returns the status of the flow operation. This string is returned in
|
4542
|
+
# the responses to start, list, and describe commands.
|
4543
|
+
#
|
4544
|
+
# If the status is `COMPLETED_WITH_ERRORS`, results may be returned
|
4545
|
+
# with any number of `Flows` missing from the response. If the status
|
4546
|
+
# is `FAILED`, `Flows` returned will be empty.
|
4547
|
+
# @return [String]
|
4548
|
+
#
|
4549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/StartFlowFlushResponse AWS API Documentation
|
4550
|
+
#
|
4551
|
+
class StartFlowFlushResponse < Struct.new(
|
4552
|
+
:firewall_arn,
|
4553
|
+
:flow_operation_id,
|
4554
|
+
:flow_operation_status)
|
4555
|
+
SENSITIVE = []
|
4556
|
+
include Aws::Structure
|
4557
|
+
end
|
4558
|
+
|
3668
4559
|
# Configuration settings for the handling of the stateful rule groups in
|
3669
4560
|
# a firewall policy.
|
3670
4561
|
#
|
@@ -3738,7 +4629,7 @@ module Aws::NetworkFirewall
|
|
3738
4629
|
#
|
3739
4630
|
#
|
3740
4631
|
#
|
3741
|
-
# [1]: https://suricata.readthedocs.io/en/suricata-
|
4632
|
+
# [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html
|
3742
4633
|
#
|
3743
4634
|
# @!attribute [rw] action
|
3744
4635
|
# Defines what Network Firewall should do with the packets in a
|
@@ -4281,6 +5172,20 @@ module Aws::NetworkFirewall
|
|
4281
5172
|
include Aws::Structure
|
4282
5173
|
end
|
4283
5174
|
|
5175
|
+
# A unique source IP address that connected to a domain.
|
5176
|
+
#
|
5177
|
+
# @!attribute [rw] count
|
5178
|
+
# The number of unique source IP addresses that connected to a domain.
|
5179
|
+
# @return [Integer]
|
5180
|
+
#
|
5181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UniqueSources AWS API Documentation
|
5182
|
+
#
|
5183
|
+
class UniqueSources < Struct.new(
|
5184
|
+
:count)
|
5185
|
+
SENSITIVE = []
|
5186
|
+
include Aws::Structure
|
5187
|
+
end
|
5188
|
+
|
4284
5189
|
# The operation you requested isn't supported by Network Firewall.
|
4285
5190
|
#
|
4286
5191
|
# @!attribute [rw] message
|
@@ -4314,6 +5219,104 @@ module Aws::NetworkFirewall
|
|
4314
5219
|
#
|
4315
5220
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4316
5221
|
|
5222
|
+
# @!attribute [rw] enabled_analysis_types
|
5223
|
+
# An optional setting indicating the specific traffic analysis types
|
5224
|
+
# to enable on the firewall.
|
5225
|
+
# @return [Array<String>]
|
5226
|
+
#
|
5227
|
+
# @!attribute [rw] firewall_arn
|
5228
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
5229
|
+
#
|
5230
|
+
# You must specify the ARN or the name, and you can specify both.
|
5231
|
+
# @return [String]
|
5232
|
+
#
|
5233
|
+
# @!attribute [rw] firewall_name
|
5234
|
+
# The descriptive name of the firewall. You can't change the name of
|
5235
|
+
# a firewall after you create it.
|
5236
|
+
#
|
5237
|
+
# You must specify the ARN or the name, and you can specify both.
|
5238
|
+
# @return [String]
|
5239
|
+
#
|
5240
|
+
# @!attribute [rw] update_token
|
5241
|
+
# An optional token that you can use for optimistic locking. Network
|
5242
|
+
# Firewall returns a token to your requests that access the firewall.
|
5243
|
+
# The token marks the state of the firewall resource at the time of
|
5244
|
+
# the request.
|
5245
|
+
#
|
5246
|
+
# To make an unconditional change to the firewall, omit the token in
|
5247
|
+
# your update request. Without the token, Network Firewall performs
|
5248
|
+
# your updates regardless of whether the firewall has changed since
|
5249
|
+
# you last retrieved it.
|
5250
|
+
#
|
5251
|
+
# To make a conditional change to the firewall, provide the token in
|
5252
|
+
# your update request. Network Firewall uses the token to ensure that
|
5253
|
+
# the firewall hasn't changed since you last retrieved it. If it has
|
5254
|
+
# changed, the operation fails with an `InvalidTokenException`. If
|
5255
|
+
# this happens, retrieve the firewall again to get a current copy of
|
5256
|
+
# it with a new token. Reapply your changes as needed, then try the
|
5257
|
+
# operation again using the new token.
|
5258
|
+
# @return [String]
|
5259
|
+
#
|
5260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateFirewallAnalysisSettingsRequest AWS API Documentation
|
5261
|
+
#
|
5262
|
+
class UpdateFirewallAnalysisSettingsRequest < Struct.new(
|
5263
|
+
:enabled_analysis_types,
|
5264
|
+
:firewall_arn,
|
5265
|
+
:firewall_name,
|
5266
|
+
:update_token)
|
5267
|
+
SENSITIVE = []
|
5268
|
+
include Aws::Structure
|
5269
|
+
end
|
5270
|
+
|
5271
|
+
# @!attribute [rw] enabled_analysis_types
|
5272
|
+
# An optional setting indicating the specific traffic analysis types
|
5273
|
+
# to enable on the firewall.
|
5274
|
+
# @return [Array<String>]
|
5275
|
+
#
|
5276
|
+
# @!attribute [rw] firewall_arn
|
5277
|
+
# The Amazon Resource Name (ARN) of the firewall.
|
5278
|
+
#
|
5279
|
+
# You must specify the ARN or the name, and you can specify both.
|
5280
|
+
# @return [String]
|
5281
|
+
#
|
5282
|
+
# @!attribute [rw] firewall_name
|
5283
|
+
# The descriptive name of the firewall. You can't change the name of
|
5284
|
+
# a firewall after you create it.
|
5285
|
+
#
|
5286
|
+
# You must specify the ARN or the name, and you can specify both.
|
5287
|
+
# @return [String]
|
5288
|
+
#
|
5289
|
+
# @!attribute [rw] update_token
|
5290
|
+
# An optional token that you can use for optimistic locking. Network
|
5291
|
+
# Firewall returns a token to your requests that access the firewall.
|
5292
|
+
# The token marks the state of the firewall resource at the time of
|
5293
|
+
# the request.
|
5294
|
+
#
|
5295
|
+
# To make an unconditional change to the firewall, omit the token in
|
5296
|
+
# your update request. Without the token, Network Firewall performs
|
5297
|
+
# your updates regardless of whether the firewall has changed since
|
5298
|
+
# you last retrieved it.
|
5299
|
+
#
|
5300
|
+
# To make a conditional change to the firewall, provide the token in
|
5301
|
+
# your update request. Network Firewall uses the token to ensure that
|
5302
|
+
# the firewall hasn't changed since you last retrieved it. If it has
|
5303
|
+
# changed, the operation fails with an `InvalidTokenException`. If
|
5304
|
+
# this happens, retrieve the firewall again to get a current copy of
|
5305
|
+
# it with a new token. Reapply your changes as needed, then try the
|
5306
|
+
# operation again using the new token.
|
5307
|
+
# @return [String]
|
5308
|
+
#
|
5309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateFirewallAnalysisSettingsResponse AWS API Documentation
|
5310
|
+
#
|
5311
|
+
class UpdateFirewallAnalysisSettingsResponse < Struct.new(
|
5312
|
+
:enabled_analysis_types,
|
5313
|
+
:firewall_arn,
|
5314
|
+
:firewall_name,
|
5315
|
+
:update_token)
|
5316
|
+
SENSITIVE = []
|
5317
|
+
include Aws::Structure
|
5318
|
+
end
|
5319
|
+
|
4317
5320
|
# @!attribute [rw] update_token
|
4318
5321
|
# An optional token that you can use for optimistic locking. Network
|
4319
5322
|
# Firewall returns a token to your requests that access the firewall.
|