@aws-sdk/client-network-firewall 3.686.0 → 3.691.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.
- package/dist-types/models/models_0.d.ts +303 -303
- package/dist-types/ts3.4/models/models_0.d.ts +309 -303
- package/package.json +7 -7
|
@@ -44,7 +44,7 @@ export interface ActionDefinition {
|
|
|
44
44
|
* publishes metrics for the packet and forwards it. </p>
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
PublishMetricAction?: PublishMetricAction;
|
|
47
|
+
PublishMetricAction?: PublishMetricAction | undefined;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* <p>A single IP address specification. This is used in the <a>MatchAttributes</a>
|
|
@@ -96,7 +96,7 @@ export interface AnalysisResult {
|
|
|
96
96
|
* <p>The priority number of the stateless rules identified in the analysis.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
IdentifiedRuleIds?: string[];
|
|
99
|
+
IdentifiedRuleIds?: string[] | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>The types of rule configurations that Network Firewall analyzes your rule groups for. Network Firewall analyzes stateless rule groups for the following types of rule configurations:</p>
|
|
102
102
|
* <ul>
|
|
@@ -125,12 +125,12 @@ export interface AnalysisResult {
|
|
|
125
125
|
* </ul>
|
|
126
126
|
* @public
|
|
127
127
|
*/
|
|
128
|
-
IdentifiedType?: IdentifiedType;
|
|
128
|
+
IdentifiedType?: IdentifiedType | undefined;
|
|
129
129
|
/**
|
|
130
130
|
* <p>Provides analysis details for the identified rule.</p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
AnalysisDetail?: string;
|
|
133
|
+
AnalysisDetail?: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
136
|
* @public
|
|
@@ -142,19 +142,19 @@ export interface AssociateFirewallPolicyRequest {
|
|
|
142
142
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
UpdateToken?: string;
|
|
145
|
+
UpdateToken?: string | undefined;
|
|
146
146
|
/**
|
|
147
147
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
148
148
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
149
149
|
* @public
|
|
150
150
|
*/
|
|
151
|
-
FirewallArn?: string;
|
|
151
|
+
FirewallArn?: string | undefined;
|
|
152
152
|
/**
|
|
153
153
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
154
154
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
155
155
|
* @public
|
|
156
156
|
*/
|
|
157
|
-
FirewallName?: string;
|
|
157
|
+
FirewallName?: string | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* <p>The Amazon Resource Name (ARN) of the firewall policy.</p>
|
|
160
160
|
* @public
|
|
@@ -169,24 +169,24 @@ export interface AssociateFirewallPolicyResponse {
|
|
|
169
169
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
FirewallArn?: string;
|
|
172
|
+
FirewallArn?: string | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
FirewallName?: string;
|
|
177
|
+
FirewallName?: string | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* <p>The Amazon Resource Name (ARN) of the firewall policy.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
FirewallPolicyArn?: string;
|
|
182
|
+
FirewallPolicyArn?: string | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
|
|
185
185
|
* <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
|
|
186
186
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
UpdateToken?: string;
|
|
189
|
+
UpdateToken?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
|
|
@@ -196,7 +196,7 @@ export interface AssociateFirewallPolicyResponse {
|
|
|
196
196
|
export declare class InternalServerError extends __BaseException {
|
|
197
197
|
readonly name: "InternalServerError";
|
|
198
198
|
readonly $fault: "server";
|
|
199
|
-
Message?: string;
|
|
199
|
+
Message?: string | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* @internal
|
|
202
202
|
*/
|
|
@@ -210,7 +210,7 @@ export declare class InternalServerError extends __BaseException {
|
|
|
210
210
|
export declare class InvalidOperationException extends __BaseException {
|
|
211
211
|
readonly name: "InvalidOperationException";
|
|
212
212
|
readonly $fault: "client";
|
|
213
|
-
Message?: string;
|
|
213
|
+
Message?: string | undefined;
|
|
214
214
|
/**
|
|
215
215
|
* @internal
|
|
216
216
|
*/
|
|
@@ -236,7 +236,7 @@ export declare class InvalidOperationException extends __BaseException {
|
|
|
236
236
|
export declare class InvalidRequestException extends __BaseException {
|
|
237
237
|
readonly name: "InvalidRequestException";
|
|
238
238
|
readonly $fault: "client";
|
|
239
|
-
Message?: string;
|
|
239
|
+
Message?: string | undefined;
|
|
240
240
|
/**
|
|
241
241
|
* @internal
|
|
242
242
|
*/
|
|
@@ -249,7 +249,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
249
249
|
export declare class InvalidTokenException extends __BaseException {
|
|
250
250
|
readonly name: "InvalidTokenException";
|
|
251
251
|
readonly $fault: "client";
|
|
252
|
-
Message?: string;
|
|
252
|
+
Message?: string | undefined;
|
|
253
253
|
/**
|
|
254
254
|
* @internal
|
|
255
255
|
*/
|
|
@@ -262,7 +262,7 @@ export declare class InvalidTokenException extends __BaseException {
|
|
|
262
262
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
263
263
|
readonly name: "ResourceNotFoundException";
|
|
264
264
|
readonly $fault: "client";
|
|
265
|
-
Message?: string;
|
|
265
|
+
Message?: string | undefined;
|
|
266
266
|
/**
|
|
267
267
|
* @internal
|
|
268
268
|
*/
|
|
@@ -275,7 +275,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
275
275
|
export declare class ThrottlingException extends __BaseException {
|
|
276
276
|
readonly name: "ThrottlingException";
|
|
277
277
|
readonly $fault: "client";
|
|
278
|
-
Message?: string;
|
|
278
|
+
Message?: string | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* @internal
|
|
281
281
|
*/
|
|
@@ -311,7 +311,7 @@ export interface SubnetMapping {
|
|
|
311
311
|
* <p>The subnet's IP address type. You can't change the IP address type after you create the subnet.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
IPAddressType?: IPAddressType;
|
|
314
|
+
IPAddressType?: IPAddressType | undefined;
|
|
315
315
|
}
|
|
316
316
|
/**
|
|
317
317
|
* @public
|
|
@@ -323,19 +323,19 @@ export interface AssociateSubnetsRequest {
|
|
|
323
323
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
UpdateToken?: string;
|
|
326
|
+
UpdateToken?: string | undefined;
|
|
327
327
|
/**
|
|
328
328
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
329
329
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
330
330
|
* @public
|
|
331
331
|
*/
|
|
332
|
-
FirewallArn?: string;
|
|
332
|
+
FirewallArn?: string | undefined;
|
|
333
333
|
/**
|
|
334
334
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
335
335
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
336
336
|
* @public
|
|
337
337
|
*/
|
|
338
|
-
FirewallName?: string;
|
|
338
|
+
FirewallName?: string | undefined;
|
|
339
339
|
/**
|
|
340
340
|
* <p>The IDs of the subnets that you want to associate with the firewall. </p>
|
|
341
341
|
* @public
|
|
@@ -350,24 +350,24 @@ export interface AssociateSubnetsResponse {
|
|
|
350
350
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
FirewallArn?: string;
|
|
353
|
+
FirewallArn?: string | undefined;
|
|
354
354
|
/**
|
|
355
355
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
FirewallName?: string;
|
|
358
|
+
FirewallName?: string | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>The IDs of the subnets that are associated with the firewall. </p>
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
SubnetMappings?: SubnetMapping[];
|
|
363
|
+
SubnetMappings?: SubnetMapping[] | undefined;
|
|
364
364
|
/**
|
|
365
365
|
* <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
|
|
366
366
|
* <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
|
|
367
367
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
UpdateToken?: string;
|
|
370
|
+
UpdateToken?: string | undefined;
|
|
371
371
|
}
|
|
372
372
|
/**
|
|
373
373
|
* <p>Amazon Web Services doesn't currently have enough available capacity to fulfill your request. Try your
|
|
@@ -377,7 +377,7 @@ export interface AssociateSubnetsResponse {
|
|
|
377
377
|
export declare class InsufficientCapacityException extends __BaseException {
|
|
378
378
|
readonly name: "InsufficientCapacityException";
|
|
379
379
|
readonly $fault: "server";
|
|
380
|
-
Message?: string;
|
|
380
|
+
Message?: string | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* @internal
|
|
383
383
|
*/
|
|
@@ -410,14 +410,14 @@ export interface Attachment {
|
|
|
410
410
|
* endpoint. </p>
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
SubnetId?: string;
|
|
413
|
+
SubnetId?: string | undefined;
|
|
414
414
|
/**
|
|
415
415
|
* <p>The identifier of the firewall endpoint that Network Firewall has instantiated in the
|
|
416
416
|
* subnet. You use this to identify the firewall endpoint in the VPC route tables, when you
|
|
417
417
|
* redirect the VPC traffic through the endpoint. </p>
|
|
418
418
|
* @public
|
|
419
419
|
*/
|
|
420
|
-
EndpointId?: string;
|
|
420
|
+
EndpointId?: string | undefined;
|
|
421
421
|
/**
|
|
422
422
|
* <p>The current status of the firewall endpoint in the subnet. This value reflects both the
|
|
423
423
|
* instantiation of the endpoint in the VPC subnet and the sync states that are reported in
|
|
@@ -427,12 +427,12 @@ export interface Attachment {
|
|
|
427
427
|
* <code>CREATING</code> or <code>DELETING</code>.</p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
|
-
Status?: AttachmentStatus;
|
|
430
|
+
Status?: AttachmentStatus | undefined;
|
|
431
431
|
/**
|
|
432
432
|
* <p>If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A <code>FAILED</code> status indicates a non-recoverable state, and a <code>ERROR</code> status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/firewall-troubleshooting-endpoint-failures.html">Troubleshooting firewall endpoint failures</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
StatusMessage?: string;
|
|
435
|
+
StatusMessage?: string | undefined;
|
|
436
436
|
}
|
|
437
437
|
/**
|
|
438
438
|
* <p>General information about the IP set.</p>
|
|
@@ -443,7 +443,7 @@ export interface IPSetMetadata {
|
|
|
443
443
|
* <p>Describes the total number of CIDR blocks currently in use by the IP set references in a firewall. To determine how many CIDR blocks are available for you to use in a firewall, you can call <code>AvailableCIDRCount</code>.</p>
|
|
444
444
|
* @public
|
|
445
445
|
*/
|
|
446
|
-
ResolvedCIDRCount?: number;
|
|
446
|
+
ResolvedCIDRCount?: number | undefined;
|
|
447
447
|
}
|
|
448
448
|
/**
|
|
449
449
|
* <p>Summarizes the CIDR blocks used by the IP set references in a firewall. Network Firewall calculates the number of CIDRs by taking an aggregated count of all CIDRs used by the IP sets you are referencing.</p>
|
|
@@ -454,17 +454,17 @@ export interface CIDRSummary {
|
|
|
454
454
|
* <p>The number of CIDR blocks available for use by the IP set references in a firewall.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
AvailableCIDRCount?: number;
|
|
457
|
+
AvailableCIDRCount?: number | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>The number of CIDR blocks used by the IP set references in a firewall.</p>
|
|
460
460
|
* @public
|
|
461
461
|
*/
|
|
462
|
-
UtilizedCIDRCount?: number;
|
|
462
|
+
UtilizedCIDRCount?: number | undefined;
|
|
463
463
|
/**
|
|
464
464
|
* <p>The list of the IP set references used by a firewall.</p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
IPSetReferences?: Record<string, IPSetMetadata
|
|
467
|
+
IPSetReferences?: Record<string, IPSetMetadata> | undefined;
|
|
468
468
|
}
|
|
469
469
|
/**
|
|
470
470
|
* <p>The capacity usage summary of the resources used by the <a>ReferenceSets</a> in a firewall.</p>
|
|
@@ -475,7 +475,7 @@ export interface CapacityUsageSummary {
|
|
|
475
475
|
* <p>Describes the capacity usage of the CIDR blocks used by the IP set references in a firewall.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
CIDRs?: CIDRSummary;
|
|
478
|
+
CIDRs?: CIDRSummary | undefined;
|
|
479
479
|
}
|
|
480
480
|
/**
|
|
481
481
|
* <p>Contains metadata about an Certificate Manager certificate.</p>
|
|
@@ -486,22 +486,22 @@ export interface TlsCertificateData {
|
|
|
486
486
|
* <p>The Amazon Resource Name (ARN) of the certificate.</p>
|
|
487
487
|
* @public
|
|
488
488
|
*/
|
|
489
|
-
CertificateArn?: string;
|
|
489
|
+
CertificateArn?: string | undefined;
|
|
490
490
|
/**
|
|
491
491
|
* <p>The serial number of the certificate.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
CertificateSerial?: string;
|
|
494
|
+
CertificateSerial?: string | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>The status of the certificate.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
Status?: string;
|
|
499
|
+
Status?: string | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>Contains details about the certificate status, including information about certificate errors.</p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
StatusMessage?: string;
|
|
504
|
+
StatusMessage?: string | undefined;
|
|
505
505
|
}
|
|
506
506
|
/**
|
|
507
507
|
* @public
|
|
@@ -539,7 +539,7 @@ export interface CheckCertificateRevocationStatusActions {
|
|
|
539
539
|
* </ul>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
RevokedStatusAction?: RevocationCheckAction;
|
|
542
|
+
RevokedStatusAction?: RevocationCheckAction | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has an unknown status, or a status that cannot be determined for any other reason, including when the service is unable to connect to the OCSP and CRL endpoints for the certificate.</p>
|
|
545
545
|
* <ul>
|
|
@@ -558,7 +558,7 @@ export interface CheckCertificateRevocationStatusActions {
|
|
|
558
558
|
* </ul>
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
UnknownStatusAction?: RevocationCheckAction;
|
|
561
|
+
UnknownStatusAction?: RevocationCheckAction | undefined;
|
|
562
562
|
}
|
|
563
563
|
/**
|
|
564
564
|
* @public
|
|
@@ -594,7 +594,7 @@ export interface EncryptionConfiguration {
|
|
|
594
594
|
* <p>The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id">Key ID</a> in the <i>Amazon Web Services KMS Developer Guide</i>.</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
KeyId?: string;
|
|
597
|
+
KeyId?: string | undefined;
|
|
598
598
|
/**
|
|
599
599
|
* <p>The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources.</p>
|
|
600
600
|
* @public
|
|
@@ -657,36 +657,36 @@ export interface CreateFirewallRequest {
|
|
|
657
657
|
* accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to <code>TRUE</code>.</p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
DeleteProtection?: boolean;
|
|
660
|
+
DeleteProtection?: boolean | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p>A setting indicating whether the firewall is protected against changes to the subnet associations.
|
|
663
663
|
* Use this setting to protect against
|
|
664
664
|
* accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to <code>TRUE</code>.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
SubnetChangeProtection?: boolean;
|
|
667
|
+
SubnetChangeProtection?: boolean | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>A setting indicating whether the firewall is protected against a change to the firewall policy association.
|
|
670
670
|
* Use this setting to protect against
|
|
671
671
|
* accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to <code>TRUE</code>.</p>
|
|
672
672
|
* @public
|
|
673
673
|
*/
|
|
674
|
-
FirewallPolicyChangeProtection?: boolean;
|
|
674
|
+
FirewallPolicyChangeProtection?: boolean | undefined;
|
|
675
675
|
/**
|
|
676
676
|
* <p>A description of the firewall.</p>
|
|
677
677
|
* @public
|
|
678
678
|
*/
|
|
679
|
-
Description?: string;
|
|
679
|
+
Description?: string | undefined;
|
|
680
680
|
/**
|
|
681
681
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
682
682
|
* @public
|
|
683
683
|
*/
|
|
684
|
-
Tags?: Tag[];
|
|
684
|
+
Tags?: Tag[] | undefined;
|
|
685
685
|
/**
|
|
686
686
|
* <p>A complex type that contains settings for encryption of your firewall resources.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
689
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
690
690
|
}
|
|
691
691
|
/**
|
|
692
692
|
* <p>The firewall defines the configuration settings for an Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource. </p>
|
|
@@ -700,12 +700,12 @@ export interface Firewall {
|
|
|
700
700
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
FirewallName?: string;
|
|
703
|
+
FirewallName?: string | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
FirewallArn?: string;
|
|
708
|
+
FirewallArn?: string | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p>The Amazon Resource Name (ARN) of the firewall policy.</p>
|
|
711
711
|
* <p>The relationship of firewall to firewall policy is many to one. Each firewall requires
|
|
@@ -731,26 +731,26 @@ export interface Firewall {
|
|
|
731
731
|
* accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to <code>TRUE</code>.</p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
DeleteProtection?: boolean;
|
|
734
|
+
DeleteProtection?: boolean | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* <p>A setting indicating whether the firewall is protected against changes to the subnet associations.
|
|
737
737
|
* Use this setting to protect against
|
|
738
738
|
* accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to <code>TRUE</code>.</p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
SubnetChangeProtection?: boolean;
|
|
741
|
+
SubnetChangeProtection?: boolean | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* <p>A setting indicating whether the firewall is protected against a change to the firewall policy association.
|
|
744
744
|
* Use this setting to protect against
|
|
745
745
|
* accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to <code>TRUE</code>.</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
FirewallPolicyChangeProtection?: boolean;
|
|
748
|
+
FirewallPolicyChangeProtection?: boolean | undefined;
|
|
749
749
|
/**
|
|
750
750
|
* <p>A description of the firewall.</p>
|
|
751
751
|
* @public
|
|
752
752
|
*/
|
|
753
|
-
Description?: string;
|
|
753
|
+
Description?: string | undefined;
|
|
754
754
|
/**
|
|
755
755
|
* <p>The unique identifier for the firewall. </p>
|
|
756
756
|
* @public
|
|
@@ -760,12 +760,12 @@ export interface Firewall {
|
|
|
760
760
|
* <p></p>
|
|
761
761
|
* @public
|
|
762
762
|
*/
|
|
763
|
-
Tags?: Tag[];
|
|
763
|
+
Tags?: Tag[] | undefined;
|
|
764
764
|
/**
|
|
765
765
|
* <p>A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall.</p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
768
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
769
769
|
}
|
|
770
770
|
/**
|
|
771
771
|
* @public
|
|
@@ -805,12 +805,12 @@ export interface PerObjectStatus {
|
|
|
805
805
|
* <p>Indicates whether this object is in sync with the version indicated in the update token.</p>
|
|
806
806
|
* @public
|
|
807
807
|
*/
|
|
808
|
-
SyncStatus?: PerObjectSyncStatus;
|
|
808
|
+
SyncStatus?: PerObjectSyncStatus | undefined;
|
|
809
809
|
/**
|
|
810
810
|
* <p>The current version of the object that is either in sync or pending synchronization. </p>
|
|
811
811
|
* @public
|
|
812
812
|
*/
|
|
813
|
-
UpdateToken?: string;
|
|
813
|
+
UpdateToken?: string | undefined;
|
|
814
814
|
}
|
|
815
815
|
/**
|
|
816
816
|
* <p>The status of the firewall endpoint and firewall policy configuration for a single VPC
|
|
@@ -838,7 +838,7 @@ export interface SyncState {
|
|
|
838
838
|
* endpoint in the subnet so that it's ready to take traffic. This is part of the <a>FirewallStatus</a>.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
Attachment?: Attachment;
|
|
841
|
+
Attachment?: Attachment | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>The configuration status of the firewall endpoint in a single VPC subnet. Network Firewall
|
|
844
844
|
* provides each endpoint with the rules that are configured in the firewall policy. Each time
|
|
@@ -846,7 +846,7 @@ export interface SyncState {
|
|
|
846
846
|
* rules in the endpoint, so it can properly filter network traffic. This is part of the <a>FirewallStatus</a>.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
Config?: Record<string, PerObjectStatus
|
|
849
|
+
Config?: Record<string, PerObjectStatus> | undefined;
|
|
850
850
|
}
|
|
851
851
|
/**
|
|
852
852
|
* <p>Detailed information about the current status of a <a>Firewall</a>. You can retrieve this for a firewall by calling <a>DescribeFirewall</a> and providing the firewall name and ARN.</p>
|
|
@@ -885,12 +885,12 @@ export interface FirewallStatus {
|
|
|
885
885
|
* and configuration object. </p>
|
|
886
886
|
* @public
|
|
887
887
|
*/
|
|
888
|
-
SyncStates?: Record<string, SyncState
|
|
888
|
+
SyncStates?: Record<string, SyncState> | undefined;
|
|
889
889
|
/**
|
|
890
890
|
* <p>Describes the capacity usage of the resources contained in a firewall's reference sets. Network Firewall calclulates the capacity usage by taking an aggregated count of all of the resources used by all of the reference sets in a firewall.</p>
|
|
891
891
|
* @public
|
|
892
892
|
*/
|
|
893
|
-
CapacityUsageSummary?: CapacityUsageSummary;
|
|
893
|
+
CapacityUsageSummary?: CapacityUsageSummary | undefined;
|
|
894
894
|
}
|
|
895
895
|
/**
|
|
896
896
|
* @public
|
|
@@ -900,12 +900,12 @@ export interface CreateFirewallResponse {
|
|
|
900
900
|
* <p>The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints. </p>
|
|
901
901
|
* @public
|
|
902
902
|
*/
|
|
903
|
-
Firewall?: Firewall;
|
|
903
|
+
Firewall?: Firewall | undefined;
|
|
904
904
|
/**
|
|
905
905
|
* <p>Detailed information about the current status of a <a>Firewall</a>. You can retrieve this for a firewall by calling <a>DescribeFirewall</a> and providing the firewall name and ARN.</p>
|
|
906
906
|
* @public
|
|
907
907
|
*/
|
|
908
|
-
FirewallStatus?: FirewallStatus;
|
|
908
|
+
FirewallStatus?: FirewallStatus | undefined;
|
|
909
909
|
}
|
|
910
910
|
/**
|
|
911
911
|
* <p>Unable to perform the operation because doing so would violate a limit setting. </p>
|
|
@@ -914,7 +914,7 @@ export interface CreateFirewallResponse {
|
|
|
914
914
|
export declare class LimitExceededException extends __BaseException {
|
|
915
915
|
readonly name: "LimitExceededException";
|
|
916
916
|
readonly $fault: "client";
|
|
917
|
-
Message?: string;
|
|
917
|
+
Message?: string | undefined;
|
|
918
918
|
/**
|
|
919
919
|
* @internal
|
|
920
920
|
*/
|
|
@@ -942,7 +942,7 @@ export interface PolicyVariables {
|
|
|
942
942
|
* <p>The IPv4 or IPv6 addresses in CIDR notation to use for the Suricata <code>HOME_NET</code> variable. If your firewall uses an inspection VPC, you might want to override the <code>HOME_NET</code> variable with the CIDRs of your home networks. If you don't override <code>HOME_NET</code> with your own CIDRs, Network Firewall by default uses the CIDR of your inspection VPC.</p>
|
|
943
943
|
* @public
|
|
944
944
|
*/
|
|
945
|
-
RuleVariables?: Record<string, IPSet
|
|
945
|
+
RuleVariables?: Record<string, IPSet> | undefined;
|
|
946
946
|
}
|
|
947
947
|
/**
|
|
948
948
|
* <p>Describes the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle and Network Firewall removes the flow entry from its flow table.
|
|
@@ -960,7 +960,7 @@ export interface FlowTimeouts {
|
|
|
960
960
|
* </p>
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
|
-
TcpIdleTimeoutSeconds?: number;
|
|
963
|
+
TcpIdleTimeoutSeconds?: number | undefined;
|
|
964
964
|
}
|
|
965
965
|
/**
|
|
966
966
|
* @public
|
|
@@ -1000,7 +1000,7 @@ export interface StatefulEngineOptions {
|
|
|
1000
1000
|
* </p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
RuleOrder?: RuleOrder;
|
|
1003
|
+
RuleOrder?: RuleOrder | undefined;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* <p>Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself.</p>
|
|
1006
1006
|
* <ul>
|
|
@@ -1019,13 +1019,13 @@ export interface StatefulEngineOptions {
|
|
|
1019
1019
|
* </ul>
|
|
1020
1020
|
* @public
|
|
1021
1021
|
*/
|
|
1022
|
-
StreamExceptionPolicy?: StreamExceptionPolicy;
|
|
1022
|
+
StreamExceptionPolicy?: StreamExceptionPolicy | undefined;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* <p>Configures the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle.
|
|
1025
1025
|
* </p>
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*/
|
|
1028
|
-
FlowTimeouts?: FlowTimeouts;
|
|
1028
|
+
FlowTimeouts?: FlowTimeouts | undefined;
|
|
1029
1029
|
}
|
|
1030
1030
|
/**
|
|
1031
1031
|
* @public
|
|
@@ -1048,7 +1048,7 @@ export interface StatefulRuleGroupOverride {
|
|
|
1048
1048
|
* managed rule groups.</p>
|
|
1049
1049
|
* @public
|
|
1050
1050
|
*/
|
|
1051
|
-
Action?: OverrideAction;
|
|
1051
|
+
Action?: OverrideAction | undefined;
|
|
1052
1052
|
}
|
|
1053
1053
|
/**
|
|
1054
1054
|
* <p>Identifier for a single stateful rule group, used in a firewall policy to refer to a
|
|
@@ -1073,12 +1073,12 @@ export interface StatefulRuleGroupReference {
|
|
|
1073
1073
|
* 200, and so on. </p>
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
Priority?: number;
|
|
1076
|
+
Priority?: number | undefined;
|
|
1077
1077
|
/**
|
|
1078
1078
|
* <p>The action that allows the policy owner to override the behavior of the rule group within a policy.</p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
Override?: StatefulRuleGroupOverride;
|
|
1081
|
+
Override?: StatefulRuleGroupOverride | undefined;
|
|
1082
1082
|
}
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>An optional, non-standard action to use for stateless packet handling. You can define
|
|
@@ -1150,7 +1150,7 @@ export interface FirewallPolicy {
|
|
|
1150
1150
|
* matching criteria in stateless rules. </p>
|
|
1151
1151
|
* @public
|
|
1152
1152
|
*/
|
|
1153
|
-
StatelessRuleGroupReferences?: StatelessRuleGroupReference[];
|
|
1153
|
+
StatelessRuleGroupReferences?: StatelessRuleGroupReference[] | undefined;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* <p>The actions to take on a packet if it doesn't match any of the stateless rules in the
|
|
1156
1156
|
* policy. If you want non-matching packets to be forwarded for stateful inspection, specify
|
|
@@ -1184,13 +1184,13 @@ export interface FirewallPolicy {
|
|
|
1184
1184
|
* define, and then you can use it by name in your default actions specifications.</p>
|
|
1185
1185
|
* @public
|
|
1186
1186
|
*/
|
|
1187
|
-
StatelessCustomActions?: CustomAction[];
|
|
1187
|
+
StatelessCustomActions?: CustomAction[] | undefined;
|
|
1188
1188
|
/**
|
|
1189
1189
|
* <p>References to the stateful rule groups that are used in the policy. These define the
|
|
1190
1190
|
* inspection criteria in stateful rules. </p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
StatefulRuleGroupReferences?: StatefulRuleGroupReference[];
|
|
1193
|
+
StatefulRuleGroupReferences?: StatefulRuleGroupReference[] | undefined;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional,
|
|
1196
1196
|
* and is only valid when using the strict rule order.</p>
|
|
@@ -1214,23 +1214,23 @@ export interface FirewallPolicy {
|
|
|
1214
1214
|
* </p>
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
StatefulDefaultActions?: string[];
|
|
1217
|
+
StatefulDefaultActions?: string[] | undefined;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* <p>Additional options governing how Network Firewall handles stateful rules. The stateful
|
|
1220
1220
|
* rule groups that you use in your policy must have stateful rule options settings that are compatible with these settings.</p>
|
|
1221
1221
|
* @public
|
|
1222
1222
|
*/
|
|
1223
|
-
StatefulEngineOptions?: StatefulEngineOptions;
|
|
1223
|
+
StatefulEngineOptions?: StatefulEngineOptions | undefined;
|
|
1224
1224
|
/**
|
|
1225
1225
|
* <p>The Amazon Resource Name (ARN) of the TLS inspection configuration.</p>
|
|
1226
1226
|
* @public
|
|
1227
1227
|
*/
|
|
1228
|
-
TLSInspectionConfigurationArn?: string;
|
|
1228
|
+
TLSInspectionConfigurationArn?: string | undefined;
|
|
1229
1229
|
/**
|
|
1230
1230
|
* <p>Contains variables that you can use to override default Suricata settings in your firewall policy.</p>
|
|
1231
1231
|
* @public
|
|
1232
1232
|
*/
|
|
1233
|
-
PolicyVariables?: PolicyVariables;
|
|
1233
|
+
PolicyVariables?: PolicyVariables | undefined;
|
|
1234
1234
|
}
|
|
1235
1235
|
/**
|
|
1236
1236
|
* @public
|
|
@@ -1250,12 +1250,12 @@ export interface CreateFirewallPolicyRequest {
|
|
|
1250
1250
|
* <p>A description of the firewall policy.</p>
|
|
1251
1251
|
* @public
|
|
1252
1252
|
*/
|
|
1253
|
-
Description?: string;
|
|
1253
|
+
Description?: string | undefined;
|
|
1254
1254
|
/**
|
|
1255
1255
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
1256
1256
|
* @public
|
|
1257
1257
|
*/
|
|
1258
|
-
Tags?: Tag[];
|
|
1258
|
+
Tags?: Tag[] | undefined;
|
|
1259
1259
|
/**
|
|
1260
1260
|
* <p>Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. </p>
|
|
1261
1261
|
* <p>If set to <code>TRUE</code>, Network Firewall checks whether the request can run successfully,
|
|
@@ -1265,12 +1265,12 @@ export interface CreateFirewallPolicyRequest {
|
|
|
1265
1265
|
* <p>If set to <code>FALSE</code>, Network Firewall makes the requested changes to your resources. </p>
|
|
1266
1266
|
* @public
|
|
1267
1267
|
*/
|
|
1268
|
-
DryRun?: boolean;
|
|
1268
|
+
DryRun?: boolean | undefined;
|
|
1269
1269
|
/**
|
|
1270
1270
|
* <p>A complex type that contains settings for encryption of your firewall policy resources.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1273
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1274
1274
|
}
|
|
1275
1275
|
/**
|
|
1276
1276
|
* @public
|
|
@@ -1314,44 +1314,44 @@ export interface FirewallPolicyResponse {
|
|
|
1314
1314
|
* <p>A description of the firewall policy.</p>
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
Description?: string;
|
|
1317
|
+
Description?: string | undefined;
|
|
1318
1318
|
/**
|
|
1319
1319
|
* <p>The current status of the firewall policy. You can retrieve this for a firewall policy
|
|
1320
1320
|
* by calling <a>DescribeFirewallPolicy</a> and providing the firewall policy's
|
|
1321
1321
|
* name or ARN.</p>
|
|
1322
1322
|
* @public
|
|
1323
1323
|
*/
|
|
1324
|
-
FirewallPolicyStatus?: ResourceStatus;
|
|
1324
|
+
FirewallPolicyStatus?: ResourceStatus | undefined;
|
|
1325
1325
|
/**
|
|
1326
1326
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
1327
1327
|
* @public
|
|
1328
1328
|
*/
|
|
1329
|
-
Tags?: Tag[];
|
|
1329
|
+
Tags?: Tag[] | undefined;
|
|
1330
1330
|
/**
|
|
1331
1331
|
* <p>The number of capacity units currently consumed by the policy's stateless rules.</p>
|
|
1332
1332
|
* @public
|
|
1333
1333
|
*/
|
|
1334
|
-
ConsumedStatelessRuleCapacity?: number;
|
|
1334
|
+
ConsumedStatelessRuleCapacity?: number | undefined;
|
|
1335
1335
|
/**
|
|
1336
1336
|
* <p>The number of capacity units currently consumed by the policy's stateful rules.</p>
|
|
1337
1337
|
* @public
|
|
1338
1338
|
*/
|
|
1339
|
-
ConsumedStatefulRuleCapacity?: number;
|
|
1339
|
+
ConsumedStatefulRuleCapacity?: number | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* <p>The number of firewalls that are associated with this firewall policy.</p>
|
|
1342
1342
|
* @public
|
|
1343
1343
|
*/
|
|
1344
|
-
NumberOfAssociations?: number;
|
|
1344
|
+
NumberOfAssociations?: number | undefined;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* <p>A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall policy.</p>
|
|
1347
1347
|
* @public
|
|
1348
1348
|
*/
|
|
1349
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1349
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1350
1350
|
/**
|
|
1351
1351
|
* <p>The last time that the firewall policy was changed.</p>
|
|
1352
1352
|
* @public
|
|
1353
1353
|
*/
|
|
1354
|
-
LastModifiedTime?: Date;
|
|
1354
|
+
LastModifiedTime?: Date | undefined;
|
|
1355
1355
|
}
|
|
1356
1356
|
/**
|
|
1357
1357
|
* @public
|
|
@@ -1381,7 +1381,7 @@ export interface IPSetReference {
|
|
|
1381
1381
|
* <p>The Amazon Resource Name (ARN) of the resource that you are referencing in your rule group.</p>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
ReferenceArn?: string;
|
|
1384
|
+
ReferenceArn?: string | undefined;
|
|
1385
1385
|
}
|
|
1386
1386
|
/**
|
|
1387
1387
|
* <p>Contains a set of IP set references.</p>
|
|
@@ -1392,7 +1392,7 @@ export interface ReferenceSets {
|
|
|
1392
1392
|
* <p>The list of IP set references.</p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
IPSetReferences?: Record<string, IPSetReference
|
|
1395
|
+
IPSetReferences?: Record<string, IPSetReference> | undefined;
|
|
1396
1396
|
}
|
|
1397
1397
|
/**
|
|
1398
1398
|
* @public
|
|
@@ -1604,7 +1604,7 @@ export interface RuleOption {
|
|
|
1604
1604
|
* <p>The settings of the Suricata compatible rule option. Rule options have zero or more setting values, and the number of possible and required settings depends on the <code>Keyword</code>. For more information about the settings for specific options, see <a href="https://suricata.readthedocs.io/en/suricata-6.0.9/rules/intro.html#rule-options">Rule options</a>.</p>
|
|
1605
1605
|
* @public
|
|
1606
1606
|
*/
|
|
1607
|
-
Settings?: string[];
|
|
1607
|
+
Settings?: string[] | undefined;
|
|
1608
1608
|
}
|
|
1609
1609
|
/**
|
|
1610
1610
|
* <p>A single Suricata rules specification, for use in a stateful rule group.
|
|
@@ -1720,7 +1720,7 @@ export interface TCPFlagField {
|
|
|
1720
1720
|
* <p>The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.</p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
Masks?: TCPFlag[];
|
|
1723
|
+
Masks?: TCPFlag[] | undefined;
|
|
1724
1724
|
}
|
|
1725
1725
|
/**
|
|
1726
1726
|
* <p>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. </p>
|
|
@@ -1732,13 +1732,13 @@ export interface MatchAttributes {
|
|
|
1732
1732
|
* specified, this matches with any source address. </p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
Sources?: Address[];
|
|
1735
|
+
Sources?: Address[] | undefined;
|
|
1736
1736
|
/**
|
|
1737
1737
|
* <p>The destination IP addresses and address ranges to inspect for, in CIDR notation. If not
|
|
1738
1738
|
* specified, this matches with any destination address. </p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
Destinations?: Address[];
|
|
1741
|
+
Destinations?: Address[] | undefined;
|
|
1742
1742
|
/**
|
|
1743
1743
|
* <p>The source ports to inspect for. If not specified, this matches with any source port.
|
|
1744
1744
|
* This setting is only used for protocols 6 (TCP) and 17 (UDP). </p>
|
|
@@ -1746,7 +1746,7 @@ export interface MatchAttributes {
|
|
|
1746
1746
|
* ranges, for example <code>1990:1994</code>. </p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
SourcePorts?: PortRange[];
|
|
1749
|
+
SourcePorts?: PortRange[] | undefined;
|
|
1750
1750
|
/**
|
|
1751
1751
|
* <p>The destination ports to inspect for. If not specified, this matches with any
|
|
1752
1752
|
* destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP). </p>
|
|
@@ -1754,19 +1754,19 @@ export interface MatchAttributes {
|
|
|
1754
1754
|
* ranges, for example <code>1990:1994</code>. </p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
DestinationPorts?: PortRange[];
|
|
1757
|
+
DestinationPorts?: PortRange[] | undefined;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* <p>The protocols to inspect for, specified using each protocol's assigned internet protocol
|
|
1760
1760
|
* number (IANA). If not specified, this matches with any protocol. </p>
|
|
1761
1761
|
* @public
|
|
1762
1762
|
*/
|
|
1763
|
-
Protocols?: number[];
|
|
1763
|
+
Protocols?: number[] | undefined;
|
|
1764
1764
|
/**
|
|
1765
1765
|
* <p>The TCP flags and masks to inspect for. If not specified, this matches with any
|
|
1766
1766
|
* settings. This setting is only used for protocol 6 (TCP).</p>
|
|
1767
1767
|
* @public
|
|
1768
1768
|
*/
|
|
1769
|
-
TCPFlags?: TCPFlagField[];
|
|
1769
|
+
TCPFlags?: TCPFlagField[] | undefined;
|
|
1770
1770
|
}
|
|
1771
1771
|
/**
|
|
1772
1772
|
* <p>The inspection criteria and action for a single stateless rule. Network Firewall inspects each packet for the specified matching
|
|
@@ -1869,7 +1869,7 @@ export interface StatelessRulesAndCustomActions {
|
|
|
1869
1869
|
* <code>Actions</code> specification.</p>
|
|
1870
1870
|
* @public
|
|
1871
1871
|
*/
|
|
1872
|
-
CustomActions?: CustomAction[];
|
|
1872
|
+
CustomActions?: CustomAction[] | undefined;
|
|
1873
1873
|
}
|
|
1874
1874
|
/**
|
|
1875
1875
|
* <p>The stateless or stateful rules definitions for use in a single rule group. Each rule
|
|
@@ -1889,12 +1889,12 @@ export interface RulesSource {
|
|
|
1889
1889
|
* </note>
|
|
1890
1890
|
* @public
|
|
1891
1891
|
*/
|
|
1892
|
-
RulesString?: string;
|
|
1892
|
+
RulesString?: string | undefined;
|
|
1893
1893
|
/**
|
|
1894
1894
|
* <p>Stateful inspection criteria for a domain list rule group. </p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
RulesSourceList?: RulesSourceList;
|
|
1897
|
+
RulesSourceList?: RulesSourceList | undefined;
|
|
1898
1898
|
/**
|
|
1899
1899
|
* <p>An array of individual stateful rules inspection criteria to be used together in a stateful rule group.
|
|
1900
1900
|
* Use this option to specify simple Suricata rules with protocol, source and destination, ports, direction, and rule options.
|
|
@@ -1902,12 +1902,12 @@ export interface RulesSource {
|
|
|
1902
1902
|
* <a href="https://suricata.readthedocs.io/en/suricata-6.0.9/rules/intro.html">Rules Format</a>. </p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
StatefulRules?: StatefulRule[];
|
|
1905
|
+
StatefulRules?: StatefulRule[] | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>Stateless inspection criteria to be used in a stateless rule group. </p>
|
|
1908
1908
|
* @public
|
|
1909
1909
|
*/
|
|
1910
|
-
StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions;
|
|
1910
|
+
StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions | undefined;
|
|
1911
1911
|
}
|
|
1912
1912
|
/**
|
|
1913
1913
|
* <p>A set of port ranges for use in the rules in a rule group. </p>
|
|
@@ -1919,7 +1919,7 @@ export interface PortSet {
|
|
|
1919
1919
|
* </p>
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
Definition?: string[];
|
|
1922
|
+
Definition?: string[] | undefined;
|
|
1923
1923
|
}
|
|
1924
1924
|
/**
|
|
1925
1925
|
* <p>Settings that are available for use in the rules in the <a>RuleGroup</a>
|
|
@@ -1931,12 +1931,12 @@ export interface RuleVariables {
|
|
|
1931
1931
|
* <p>A list of IP addresses and address ranges, in CIDR notation. </p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
IPSets?: Record<string, IPSet
|
|
1934
|
+
IPSets?: Record<string, IPSet> | undefined;
|
|
1935
1935
|
/**
|
|
1936
1936
|
* <p>A list of port ranges. </p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
PortSets?: Record<string, PortSet
|
|
1939
|
+
PortSets?: Record<string, PortSet> | undefined;
|
|
1940
1940
|
}
|
|
1941
1941
|
/**
|
|
1942
1942
|
* <p>Additional options governing how Network Firewall handles the rule group. You can only use these for stateful rule groups.</p>
|
|
@@ -1951,7 +1951,7 @@ export interface StatefulRuleOptions {
|
|
|
1951
1951
|
* </p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
RuleOrder?: RuleOrder;
|
|
1954
|
+
RuleOrder?: RuleOrder | undefined;
|
|
1955
1955
|
}
|
|
1956
1956
|
/**
|
|
1957
1957
|
* <p>The object that defines the rules in a rule group. This, along with <a>RuleGroupResponse</a>, define the rule group. You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>. </p>
|
|
@@ -1968,12 +1968,12 @@ export interface RuleGroup {
|
|
|
1968
1968
|
* these for stateful rule groups. </p>
|
|
1969
1969
|
* @public
|
|
1970
1970
|
*/
|
|
1971
|
-
RuleVariables?: RuleVariables;
|
|
1971
|
+
RuleVariables?: RuleVariables | undefined;
|
|
1972
1972
|
/**
|
|
1973
1973
|
* <p>The list of a rule group's reference sets.</p>
|
|
1974
1974
|
* @public
|
|
1975
1975
|
*/
|
|
1976
|
-
ReferenceSets?: ReferenceSets;
|
|
1976
|
+
ReferenceSets?: ReferenceSets | undefined;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* <p>The stateful rules or stateless rules for the rule group. </p>
|
|
1979
1979
|
* @public
|
|
@@ -1984,7 +1984,7 @@ export interface RuleGroup {
|
|
|
1984
1984
|
* rule group must have stateful rule options settings that are compatible with these settings. Some limitations apply; for more information, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-limitations-caveats.html">Strict evaluation order</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
1985
1985
|
* @public
|
|
1986
1986
|
*/
|
|
1987
|
-
StatefulRuleOptions?: StatefulRuleOptions;
|
|
1987
|
+
StatefulRuleOptions?: StatefulRuleOptions | undefined;
|
|
1988
1988
|
}
|
|
1989
1989
|
/**
|
|
1990
1990
|
* <p>High-level information about the managed rule group that your own rule group is copied from. You can use the the metadata to track version updates made to the originating rule group. You can retrieve all objects for a rule group by calling <a href="https://docs.aws.amazon.com/network-firewall/latest/APIReference/API_DescribeRuleGroup.html">DescribeRuleGroup</a>.</p>
|
|
@@ -1995,12 +1995,12 @@ export interface SourceMetadata {
|
|
|
1995
1995
|
* <p>The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from.</p>
|
|
1996
1996
|
* @public
|
|
1997
1997
|
*/
|
|
1998
|
-
SourceArn?: string;
|
|
1998
|
+
SourceArn?: string | undefined;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* <p>The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call <a href="https://docs.aws.amazon.com/network-firewall/latest/APIReference/API_DescribeRuleGroup.html#networkfirewall-DescribeRuleGroup-response-UpdateToken">DescribeRuleGroup</a>.</p>
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
SourceUpdateToken?: string;
|
|
2003
|
+
SourceUpdateToken?: string | undefined;
|
|
2004
2004
|
}
|
|
2005
2005
|
/**
|
|
2006
2006
|
* @public
|
|
@@ -2030,7 +2030,7 @@ export interface CreateRuleGroupRequest {
|
|
|
2030
2030
|
* </note>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
RuleGroup?: RuleGroup;
|
|
2033
|
+
RuleGroup?: RuleGroup | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>A string containing stateful rule group rules specifications in Suricata flat format, with one rule
|
|
2036
2036
|
* per line. Use this to import your existing Suricata compatible rule groups. </p>
|
|
@@ -2041,7 +2041,7 @@ export interface CreateRuleGroupRequest {
|
|
|
2041
2041
|
* response returns a <a>RuleGroup</a> object that Network Firewall has populated from your string. </p>
|
|
2042
2042
|
* @public
|
|
2043
2043
|
*/
|
|
2044
|
-
Rules?: string;
|
|
2044
|
+
Rules?: string | undefined;
|
|
2045
2045
|
/**
|
|
2046
2046
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2047
2047
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
@@ -2052,7 +2052,7 @@ export interface CreateRuleGroupRequest {
|
|
|
2052
2052
|
* <p>A description of the rule group. </p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
Description?: string;
|
|
2055
|
+
Description?: string | undefined;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation.
|
|
2058
2058
|
* When you update a rule group, you are limited to this capacity. When you reference a rule group
|
|
@@ -2101,7 +2101,7 @@ export interface CreateRuleGroupRequest {
|
|
|
2101
2101
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
Tags?: Tag[];
|
|
2104
|
+
Tags?: Tag[] | undefined;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* <p>Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. </p>
|
|
2107
2107
|
* <p>If set to <code>TRUE</code>, Network Firewall checks whether the request can run successfully,
|
|
@@ -2111,22 +2111,22 @@ export interface CreateRuleGroupRequest {
|
|
|
2111
2111
|
* <p>If set to <code>FALSE</code>, Network Firewall makes the requested changes to your resources. </p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
DryRun?: boolean;
|
|
2114
|
+
DryRun?: boolean | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* <p>A complex type that contains settings for encryption of your rule group resources.</p>
|
|
2117
2117
|
* @public
|
|
2118
2118
|
*/
|
|
2119
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
2119
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2120
2120
|
/**
|
|
2121
2121
|
* <p>A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to keep track of updates made to the originating rule group.</p>
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
SourceMetadata?: SourceMetadata;
|
|
2124
|
+
SourceMetadata?: SourceMetadata | undefined;
|
|
2125
2125
|
/**
|
|
2126
2126
|
* <p>Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to <code>TRUE</code>, Network Firewall runs the analysis and then creates the rule group for you. To run the stateless rule group analyzer without creating the rule group, set <code>DryRun</code> to <code>TRUE</code>.</p>
|
|
2127
2127
|
* @public
|
|
2128
2128
|
*/
|
|
2129
|
-
AnalyzeRuleGroup?: boolean;
|
|
2129
|
+
AnalyzeRuleGroup?: boolean | undefined;
|
|
2130
2130
|
}
|
|
2131
2131
|
/**
|
|
2132
2132
|
* <p>The high-level properties of a rule group. This, along with the <a>RuleGroup</a>, define the rule group. You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>. </p>
|
|
@@ -2157,13 +2157,13 @@ export interface RuleGroupResponse {
|
|
|
2157
2157
|
* <p>A description of the rule group. </p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
Description?: string;
|
|
2160
|
+
Description?: string | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2163
2163
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
Type?: RuleGroupType;
|
|
2166
|
+
Type?: RuleGroupType | undefined;
|
|
2167
2167
|
/**
|
|
2168
2168
|
* <p>The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation.
|
|
2169
2169
|
* When you update a rule group, you are limited to this capacity. When you reference a rule group
|
|
@@ -2172,37 +2172,37 @@ export interface RuleGroupResponse {
|
|
|
2172
2172
|
* <a>CreateRuleGroup</a> with <code>DryRun</code> set to <code>TRUE</code>. </p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
Capacity?: number;
|
|
2175
|
+
Capacity?: number | undefined;
|
|
2176
2176
|
/**
|
|
2177
2177
|
* <p>Detailed information about the current status of a rule group. </p>
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
RuleGroupStatus?: ResourceStatus;
|
|
2180
|
+
RuleGroupStatus?: ResourceStatus | undefined;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
2183
2183
|
* @public
|
|
2184
2184
|
*/
|
|
2185
|
-
Tags?: Tag[];
|
|
2185
|
+
Tags?: Tag[] | undefined;
|
|
2186
2186
|
/**
|
|
2187
2187
|
* <p>The number of capacity units currently consumed by the rule group rules. </p>
|
|
2188
2188
|
* @public
|
|
2189
2189
|
*/
|
|
2190
|
-
ConsumedCapacity?: number;
|
|
2190
|
+
ConsumedCapacity?: number | undefined;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* <p>The number of firewall policies that use this rule group.</p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
NumberOfAssociations?: number;
|
|
2195
|
+
NumberOfAssociations?: number | undefined;
|
|
2196
2196
|
/**
|
|
2197
2197
|
* <p>A complex type that contains the Amazon Web Services KMS encryption configuration settings for your rule group.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
2200
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to track the version updates made to the originating rule group.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
SourceMetadata?: SourceMetadata;
|
|
2205
|
+
SourceMetadata?: SourceMetadata | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's
|
|
2208
2208
|
* used to record changes to the managed rule group. You can subscribe to the SNS topic to receive
|
|
@@ -2210,17 +2210,17 @@ export interface RuleGroupResponse {
|
|
|
2210
2210
|
* expiration. For more information, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/welcome.html">Amazon Simple Notification Service Developer Guide.</a>.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
SnsTopic?: string;
|
|
2213
|
+
SnsTopic?: string | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* <p>The last time that the rule group was changed.</p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
LastModifiedTime?: Date;
|
|
2218
|
+
LastModifiedTime?: Date | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p>The list of analysis results for <code>AnalyzeRuleGroup</code>. If you set <code>AnalyzeRuleGroup</code> to <code>TRUE</code> in <a>CreateRuleGroup</a>, <a>UpdateRuleGroup</a>, or <a>DescribeRuleGroup</a>, Network Firewall analyzes the rule group and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in the list of analysis results.</p>
|
|
2221
2221
|
* @public
|
|
2222
2222
|
*/
|
|
2223
|
-
AnalysisResults?: AnalysisResult[];
|
|
2223
|
+
AnalysisResults?: AnalysisResult[] | undefined;
|
|
2224
2224
|
}
|
|
2225
2225
|
/**
|
|
2226
2226
|
* @public
|
|
@@ -2248,31 +2248,31 @@ export interface ServerCertificateScope {
|
|
|
2248
2248
|
* matches with any source address.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
Sources?: Address[];
|
|
2251
|
+
Sources?: Address[] | undefined;
|
|
2252
2252
|
/**
|
|
2253
2253
|
* <p>The destination IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this
|
|
2254
2254
|
* matches with any destination address.</p>
|
|
2255
2255
|
* @public
|
|
2256
2256
|
*/
|
|
2257
|
-
Destinations?: Address[];
|
|
2257
|
+
Destinations?: Address[] | undefined;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* <p>The source ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any source port.</p>
|
|
2260
2260
|
* <p>You can specify individual ports, for example <code>1994</code>, and you can specify port ranges, such as <code>1990:1994</code>.</p>
|
|
2261
2261
|
* @public
|
|
2262
2262
|
*/
|
|
2263
|
-
SourcePorts?: PortRange[];
|
|
2263
|
+
SourcePorts?: PortRange[] | undefined;
|
|
2264
2264
|
/**
|
|
2265
2265
|
* <p>The destination ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any destination port.</p>
|
|
2266
2266
|
* <p>You can specify individual ports, for example <code>1994</code>, and you can specify port ranges, such as <code>1990:1994</code>.</p>
|
|
2267
2267
|
* @public
|
|
2268
2268
|
*/
|
|
2269
|
-
DestinationPorts?: PortRange[];
|
|
2269
|
+
DestinationPorts?: PortRange[] | undefined;
|
|
2270
2270
|
/**
|
|
2271
2271
|
* <p>The protocols to decrypt for inspection, specified using each protocol's assigned internet protocol number
|
|
2272
2272
|
* (IANA). Network Firewall currently supports only TCP.</p>
|
|
2273
2273
|
* @public
|
|
2274
2274
|
*/
|
|
2275
|
-
Protocols?: number[];
|
|
2275
|
+
Protocols?: number[] | undefined;
|
|
2276
2276
|
}
|
|
2277
2277
|
/**
|
|
2278
2278
|
* <p>Any Certificate Manager (ACM) Secure Sockets Layer/Transport Layer Security (SSL/TLS) server certificate that's associated with a <a>ServerCertificateConfiguration</a>. Used in a <a>TLSInspectionConfiguration</a> for inspection of inbound traffic to your firewall. You must request or import a SSL/TLS certificate into ACM for each domain Network Firewall needs to decrypt and inspect. Network Firewall uses the SSL/TLS certificates to decrypt specified inbound SSL/TLS traffic going to your firewall. For information about working with certificates in Certificate Manager, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-request-public.html">Request a public certificate </a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html">Importing certificates</a> in the <i>Certificate Manager User Guide</i>.</p>
|
|
@@ -2283,7 +2283,7 @@ export interface ServerCertificate {
|
|
|
2283
2283
|
* <p>The Amazon Resource Name (ARN) of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection.</p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
ResourceArn?: string;
|
|
2286
|
+
ResourceArn?: string | undefined;
|
|
2287
2287
|
}
|
|
2288
2288
|
/**
|
|
2289
2289
|
* <p>Configures the Certificate Manager certificates and scope that Network Firewall uses to decrypt and re-encrypt traffic using a <a>TLSInspectionConfiguration</a>. You can configure <code>ServerCertificates</code> for inbound SSL/TLS inspection, a <code>CertificateAuthorityArn</code> for outbound SSL/TLS inspection, or both. For information about working with certificates for TLS inspection, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/tls-inspection-certificate-requirements.html"> Using SSL/TLS server certficiates with TLS inspection configurations</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
@@ -2297,12 +2297,12 @@ export interface ServerCertificateConfiguration {
|
|
|
2297
2297
|
* <p>The list of server certificates to use for inbound SSL/TLS inspection.</p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
ServerCertificates?: ServerCertificate[];
|
|
2300
|
+
ServerCertificates?: ServerCertificate[] | undefined;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>A list of scopes.</p>
|
|
2303
2303
|
* @public
|
|
2304
2304
|
*/
|
|
2305
|
-
Scopes?: ServerCertificateScope[];
|
|
2305
|
+
Scopes?: ServerCertificateScope[] | undefined;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* <p>The Amazon Resource Name (ARN) of the imported certificate authority (CA) certificate within Certificate Manager (ACM) to use for outbound SSL/TLS inspection.</p>
|
|
2308
2308
|
* <p>The following limitations apply:</p>
|
|
@@ -2318,12 +2318,12 @@ export interface ServerCertificateConfiguration {
|
|
|
2318
2318
|
* <p>For information about working with certificates in ACM, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html">Importing certificates</a> in the <i>Certificate Manager User Guide</i>.</p>
|
|
2319
2319
|
* @public
|
|
2320
2320
|
*/
|
|
2321
|
-
CertificateAuthorityArn?: string;
|
|
2321
|
+
CertificateAuthorityArn?: string | undefined;
|
|
2322
2322
|
/**
|
|
2323
2323
|
* <p>When enabled, Network Firewall checks if the server certificate presented by the server in the SSL/TLS connection has a revoked or unkown status. If the certificate has an unknown or revoked status, you must specify the actions that Network Firewall takes on outbound traffic. To check the certificate revocation status, you must also specify a <code>CertificateAuthorityArn</code> in <a>ServerCertificateConfiguration</a>.</p>
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
CheckCertificateRevocationStatus?: CheckCertificateRevocationStatusActions;
|
|
2326
|
+
CheckCertificateRevocationStatus?: CheckCertificateRevocationStatusActions | undefined;
|
|
2327
2327
|
}
|
|
2328
2328
|
/**
|
|
2329
2329
|
* <p>The object that defines a TLS inspection configuration. This, along with <a>TLSInspectionConfigurationResponse</a>, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling <a>DescribeTLSInspectionConfiguration</a>. </p>
|
|
@@ -2337,7 +2337,7 @@ export interface TLSInspectionConfiguration {
|
|
|
2337
2337
|
* <p>Lists the server certificate configurations that are associated with the TLS configuration.</p>
|
|
2338
2338
|
* @public
|
|
2339
2339
|
*/
|
|
2340
|
-
ServerCertificateConfigurations?: ServerCertificateConfiguration[];
|
|
2340
|
+
ServerCertificateConfigurations?: ServerCertificateConfiguration[] | undefined;
|
|
2341
2341
|
}
|
|
2342
2342
|
/**
|
|
2343
2343
|
* @public
|
|
@@ -2360,17 +2360,17 @@ export interface CreateTLSInspectionConfigurationRequest {
|
|
|
2360
2360
|
* <p>A description of the TLS inspection configuration. </p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
Description?: string;
|
|
2363
|
+
Description?: string | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
Tags?: Tag[];
|
|
2368
|
+
Tags?: Tag[] | undefined;
|
|
2369
2369
|
/**
|
|
2370
2370
|
* <p>A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/kms-encryption-at-rest.html">Encryption at rest with Amazon Web Services Key Managment Service</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
2373
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2374
2374
|
}
|
|
2375
2375
|
/**
|
|
2376
2376
|
* <p>The high-level properties of a TLS inspection configuration. This, along with the <code>TLSInspectionConfiguration</code>, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling <code>DescribeTLSInspectionConfiguration</code>.</p>
|
|
@@ -2396,42 +2396,42 @@ export interface TLSInspectionConfigurationResponse {
|
|
|
2396
2396
|
* <p>Detailed information about the current status of a <a>TLSInspectionConfiguration</a>. You can retrieve this for a TLS inspection configuration by calling <a>DescribeTLSInspectionConfiguration</a> and providing the TLS inspection configuration name and ARN.</p>
|
|
2397
2397
|
* @public
|
|
2398
2398
|
*/
|
|
2399
|
-
TLSInspectionConfigurationStatus?: ResourceStatus;
|
|
2399
|
+
TLSInspectionConfigurationStatus?: ResourceStatus | undefined;
|
|
2400
2400
|
/**
|
|
2401
2401
|
* <p>A description of the TLS inspection configuration. </p>
|
|
2402
2402
|
* @public
|
|
2403
2403
|
*/
|
|
2404
|
-
Description?: string;
|
|
2404
|
+
Description?: string | undefined;
|
|
2405
2405
|
/**
|
|
2406
2406
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
2407
2407
|
* @public
|
|
2408
2408
|
*/
|
|
2409
|
-
Tags?: Tag[];
|
|
2409
|
+
Tags?: Tag[] | undefined;
|
|
2410
2410
|
/**
|
|
2411
2411
|
* <p>The last time that the TLS inspection configuration was changed.</p>
|
|
2412
2412
|
* @public
|
|
2413
2413
|
*/
|
|
2414
|
-
LastModifiedTime?: Date;
|
|
2414
|
+
LastModifiedTime?: Date | undefined;
|
|
2415
2415
|
/**
|
|
2416
2416
|
* <p>The number of firewall policies that use this TLS inspection configuration.</p>
|
|
2417
2417
|
* @public
|
|
2418
2418
|
*/
|
|
2419
|
-
NumberOfAssociations?: number;
|
|
2419
|
+
NumberOfAssociations?: number | undefined;
|
|
2420
2420
|
/**
|
|
2421
2421
|
* <p>A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration.</p>
|
|
2422
2422
|
* @public
|
|
2423
2423
|
*/
|
|
2424
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
2424
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2425
2425
|
/**
|
|
2426
2426
|
* <p>A list of the certificates associated with the TLS inspection configuration.</p>
|
|
2427
2427
|
* @public
|
|
2428
2428
|
*/
|
|
2429
|
-
Certificates?: TlsCertificateData[];
|
|
2429
|
+
Certificates?: TlsCertificateData[] | undefined;
|
|
2430
2430
|
/**
|
|
2431
2431
|
* <p>Contains metadata about an Certificate Manager certificate.</p>
|
|
2432
2432
|
* @public
|
|
2433
2433
|
*/
|
|
2434
|
-
CertificateAuthority?: TlsCertificateData;
|
|
2434
|
+
CertificateAuthority?: TlsCertificateData | undefined;
|
|
2435
2435
|
}
|
|
2436
2436
|
/**
|
|
2437
2437
|
* @public
|
|
@@ -2458,13 +2458,13 @@ export interface DeleteFirewallRequest {
|
|
|
2458
2458
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
FirewallName?: string;
|
|
2461
|
+
FirewallName?: string | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
2464
2464
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2465
2465
|
* @public
|
|
2466
2466
|
*/
|
|
2467
|
-
FirewallArn?: string;
|
|
2467
|
+
FirewallArn?: string | undefined;
|
|
2468
2468
|
}
|
|
2469
2469
|
/**
|
|
2470
2470
|
* @public
|
|
@@ -2477,12 +2477,12 @@ export interface DeleteFirewallResponse {
|
|
|
2477
2477
|
* objects by calling <a>DescribeFirewall</a>.</p>
|
|
2478
2478
|
* @public
|
|
2479
2479
|
*/
|
|
2480
|
-
Firewall?: Firewall;
|
|
2480
|
+
Firewall?: Firewall | undefined;
|
|
2481
2481
|
/**
|
|
2482
2482
|
* <p>Detailed information about the current status of a <a>Firewall</a>. You can retrieve this for a firewall by calling <a>DescribeFirewall</a> and providing the firewall name and ARN.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
FirewallStatus?: FirewallStatus;
|
|
2485
|
+
FirewallStatus?: FirewallStatus | undefined;
|
|
2486
2486
|
}
|
|
2487
2487
|
/**
|
|
2488
2488
|
* <p>The operation you requested isn't supported by Network Firewall. </p>
|
|
@@ -2491,7 +2491,7 @@ export interface DeleteFirewallResponse {
|
|
|
2491
2491
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
2492
2492
|
readonly name: "UnsupportedOperationException";
|
|
2493
2493
|
readonly $fault: "client";
|
|
2494
|
-
Message?: string;
|
|
2494
|
+
Message?: string | undefined;
|
|
2495
2495
|
/**
|
|
2496
2496
|
* @internal
|
|
2497
2497
|
*/
|
|
@@ -2506,13 +2506,13 @@ export interface DeleteFirewallPolicyRequest {
|
|
|
2506
2506
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2507
2507
|
* @public
|
|
2508
2508
|
*/
|
|
2509
|
-
FirewallPolicyName?: string;
|
|
2509
|
+
FirewallPolicyName?: string | undefined;
|
|
2510
2510
|
/**
|
|
2511
2511
|
* <p>The Amazon Resource Name (ARN) of the firewall policy.</p>
|
|
2512
2512
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2513
2513
|
* @public
|
|
2514
2514
|
*/
|
|
2515
|
-
FirewallPolicyArn?: string;
|
|
2515
|
+
FirewallPolicyArn?: string | undefined;
|
|
2516
2516
|
}
|
|
2517
2517
|
/**
|
|
2518
2518
|
* @public
|
|
@@ -2547,7 +2547,7 @@ export interface DeleteResourcePolicyResponse {
|
|
|
2547
2547
|
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
2548
2548
|
readonly name: "InvalidResourcePolicyException";
|
|
2549
2549
|
readonly $fault: "client";
|
|
2550
|
-
Message?: string;
|
|
2550
|
+
Message?: string | undefined;
|
|
2551
2551
|
/**
|
|
2552
2552
|
* @internal
|
|
2553
2553
|
*/
|
|
@@ -2562,13 +2562,13 @@ export interface DeleteRuleGroupRequest {
|
|
|
2562
2562
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2563
2563
|
* @public
|
|
2564
2564
|
*/
|
|
2565
|
-
RuleGroupName?: string;
|
|
2565
|
+
RuleGroupName?: string | undefined;
|
|
2566
2566
|
/**
|
|
2567
2567
|
* <p>The Amazon Resource Name (ARN) of the rule group.</p>
|
|
2568
2568
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2569
2569
|
* @public
|
|
2570
2570
|
*/
|
|
2571
|
-
RuleGroupArn?: string;
|
|
2571
|
+
RuleGroupArn?: string | undefined;
|
|
2572
2572
|
/**
|
|
2573
2573
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2574
2574
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
@@ -2577,7 +2577,7 @@ export interface DeleteRuleGroupRequest {
|
|
|
2577
2577
|
* </note>
|
|
2578
2578
|
* @public
|
|
2579
2579
|
*/
|
|
2580
|
-
Type?: RuleGroupType;
|
|
2580
|
+
Type?: RuleGroupType | undefined;
|
|
2581
2581
|
}
|
|
2582
2582
|
/**
|
|
2583
2583
|
* @public
|
|
@@ -2598,13 +2598,13 @@ export interface DeleteTLSInspectionConfigurationRequest {
|
|
|
2598
2598
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2599
2599
|
* @public
|
|
2600
2600
|
*/
|
|
2601
|
-
TLSInspectionConfigurationArn?: string;
|
|
2601
|
+
TLSInspectionConfigurationArn?: string | undefined;
|
|
2602
2602
|
/**
|
|
2603
2603
|
* <p>The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.</p>
|
|
2604
2604
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2605
2605
|
* @public
|
|
2606
2606
|
*/
|
|
2607
|
-
TLSInspectionConfigurationName?: string;
|
|
2607
|
+
TLSInspectionConfigurationName?: string | undefined;
|
|
2608
2608
|
}
|
|
2609
2609
|
/**
|
|
2610
2610
|
* @public
|
|
@@ -2625,13 +2625,13 @@ export interface DescribeFirewallRequest {
|
|
|
2625
2625
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2626
2626
|
* @public
|
|
2627
2627
|
*/
|
|
2628
|
-
FirewallName?: string;
|
|
2628
|
+
FirewallName?: string | undefined;
|
|
2629
2629
|
/**
|
|
2630
2630
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
2631
2631
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2632
2632
|
* @public
|
|
2633
2633
|
*/
|
|
2634
|
-
FirewallArn?: string;
|
|
2634
|
+
FirewallArn?: string | undefined;
|
|
2635
2635
|
}
|
|
2636
2636
|
/**
|
|
2637
2637
|
* @public
|
|
@@ -2643,17 +2643,17 @@ export interface DescribeFirewallResponse {
|
|
|
2643
2643
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
2644
2644
|
* @public
|
|
2645
2645
|
*/
|
|
2646
|
-
UpdateToken?: string;
|
|
2646
|
+
UpdateToken?: string | undefined;
|
|
2647
2647
|
/**
|
|
2648
2648
|
* <p>The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints. </p>
|
|
2649
2649
|
* @public
|
|
2650
2650
|
*/
|
|
2651
|
-
Firewall?: Firewall;
|
|
2651
|
+
Firewall?: Firewall | undefined;
|
|
2652
2652
|
/**
|
|
2653
2653
|
* <p>Detailed information about the current status of a <a>Firewall</a>. You can retrieve this for a firewall by calling <a>DescribeFirewall</a> and providing the firewall name and ARN.</p>
|
|
2654
2654
|
* @public
|
|
2655
2655
|
*/
|
|
2656
|
-
FirewallStatus?: FirewallStatus;
|
|
2656
|
+
FirewallStatus?: FirewallStatus | undefined;
|
|
2657
2657
|
}
|
|
2658
2658
|
/**
|
|
2659
2659
|
* @public
|
|
@@ -2664,13 +2664,13 @@ export interface DescribeFirewallPolicyRequest {
|
|
|
2664
2664
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2665
2665
|
* @public
|
|
2666
2666
|
*/
|
|
2667
|
-
FirewallPolicyName?: string;
|
|
2667
|
+
FirewallPolicyName?: string | undefined;
|
|
2668
2668
|
/**
|
|
2669
2669
|
* <p>The Amazon Resource Name (ARN) of the firewall policy.</p>
|
|
2670
2670
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2671
2671
|
* @public
|
|
2672
2672
|
*/
|
|
2673
|
-
FirewallPolicyArn?: string;
|
|
2673
|
+
FirewallPolicyArn?: string | undefined;
|
|
2674
2674
|
}
|
|
2675
2675
|
/**
|
|
2676
2676
|
* @public
|
|
@@ -2691,7 +2691,7 @@ export interface DescribeFirewallPolicyResponse {
|
|
|
2691
2691
|
* <p>The policy for the specified firewall policy. </p>
|
|
2692
2692
|
* @public
|
|
2693
2693
|
*/
|
|
2694
|
-
FirewallPolicy?: FirewallPolicy;
|
|
2694
|
+
FirewallPolicy?: FirewallPolicy | undefined;
|
|
2695
2695
|
}
|
|
2696
2696
|
/**
|
|
2697
2697
|
* @public
|
|
@@ -2702,13 +2702,13 @@ export interface DescribeLoggingConfigurationRequest {
|
|
|
2702
2702
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2703
2703
|
* @public
|
|
2704
2704
|
*/
|
|
2705
|
-
FirewallArn?: string;
|
|
2705
|
+
FirewallArn?: string | undefined;
|
|
2706
2706
|
/**
|
|
2707
2707
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
2708
2708
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2709
2709
|
* @public
|
|
2710
2710
|
*/
|
|
2711
|
-
FirewallName?: string;
|
|
2711
|
+
FirewallName?: string | undefined;
|
|
2712
2712
|
}
|
|
2713
2713
|
/**
|
|
2714
2714
|
* @public
|
|
@@ -2826,12 +2826,12 @@ export interface DescribeLoggingConfigurationResponse {
|
|
|
2826
2826
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
2827
2827
|
* @public
|
|
2828
2828
|
*/
|
|
2829
|
-
FirewallArn?: string;
|
|
2829
|
+
FirewallArn?: string | undefined;
|
|
2830
2830
|
/**
|
|
2831
2831
|
* <p>Defines how Network Firewall performs logging for a <a>Firewall</a>. </p>
|
|
2832
2832
|
* @public
|
|
2833
2833
|
*/
|
|
2834
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
2834
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
2835
2835
|
}
|
|
2836
2836
|
/**
|
|
2837
2837
|
* @public
|
|
@@ -2851,7 +2851,7 @@ export interface DescribeResourcePolicyResponse {
|
|
|
2851
2851
|
* <p>The IAM policy for the resource. </p>
|
|
2852
2852
|
* @public
|
|
2853
2853
|
*/
|
|
2854
|
-
Policy?: string;
|
|
2854
|
+
Policy?: string | undefined;
|
|
2855
2855
|
}
|
|
2856
2856
|
/**
|
|
2857
2857
|
* @public
|
|
@@ -2862,13 +2862,13 @@ export interface DescribeRuleGroupRequest {
|
|
|
2862
2862
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2863
2863
|
* @public
|
|
2864
2864
|
*/
|
|
2865
|
-
RuleGroupName?: string;
|
|
2865
|
+
RuleGroupName?: string | undefined;
|
|
2866
2866
|
/**
|
|
2867
2867
|
* <p>The Amazon Resource Name (ARN) of the rule group.</p>
|
|
2868
2868
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2869
2869
|
* @public
|
|
2870
2870
|
*/
|
|
2871
|
-
RuleGroupArn?: string;
|
|
2871
|
+
RuleGroupArn?: string | undefined;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2874
2874
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
@@ -2877,12 +2877,12 @@ export interface DescribeRuleGroupRequest {
|
|
|
2877
2877
|
* </note>
|
|
2878
2878
|
* @public
|
|
2879
2879
|
*/
|
|
2880
|
-
Type?: RuleGroupType;
|
|
2880
|
+
Type?: RuleGroupType | undefined;
|
|
2881
2881
|
/**
|
|
2882
2882
|
* <p>Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to <code>TRUE</code>, Network Firewall runs the analysis.</p>
|
|
2883
2883
|
* @public
|
|
2884
2884
|
*/
|
|
2885
|
-
AnalyzeRuleGroup?: boolean;
|
|
2885
|
+
AnalyzeRuleGroup?: boolean | undefined;
|
|
2886
2886
|
}
|
|
2887
2887
|
/**
|
|
2888
2888
|
* @public
|
|
@@ -2903,7 +2903,7 @@ export interface DescribeRuleGroupResponse {
|
|
|
2903
2903
|
* more than one firewall policy, and you can use a firewall policy in more than one firewall. </p>
|
|
2904
2904
|
* @public
|
|
2905
2905
|
*/
|
|
2906
|
-
RuleGroup?: RuleGroup;
|
|
2906
|
+
RuleGroup?: RuleGroup | undefined;
|
|
2907
2907
|
/**
|
|
2908
2908
|
* <p>The high-level properties of a rule group. This, along with the <a>RuleGroup</a>, define the rule group. You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>. </p>
|
|
2909
2909
|
* @public
|
|
@@ -2919,13 +2919,13 @@ export interface DescribeRuleGroupMetadataRequest {
|
|
|
2919
2919
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2920
2920
|
* @public
|
|
2921
2921
|
*/
|
|
2922
|
-
RuleGroupName?: string;
|
|
2922
|
+
RuleGroupName?: string | undefined;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
|
|
2925
2925
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2926
2926
|
* @public
|
|
2927
2927
|
*/
|
|
2928
|
-
RuleGroupArn?: string;
|
|
2928
|
+
RuleGroupArn?: string | undefined;
|
|
2929
2929
|
/**
|
|
2930
2930
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2931
2931
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
@@ -2934,7 +2934,7 @@ export interface DescribeRuleGroupMetadataRequest {
|
|
|
2934
2934
|
* </note>
|
|
2935
2935
|
* @public
|
|
2936
2936
|
*/
|
|
2937
|
-
Type?: RuleGroupType;
|
|
2937
|
+
Type?: RuleGroupType | undefined;
|
|
2938
2938
|
}
|
|
2939
2939
|
/**
|
|
2940
2940
|
* @public
|
|
@@ -2957,7 +2957,7 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
2957
2957
|
* </p>
|
|
2958
2958
|
* @public
|
|
2959
2959
|
*/
|
|
2960
|
-
Description?: string;
|
|
2960
|
+
Description?: string | undefined;
|
|
2961
2961
|
/**
|
|
2962
2962
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2963
2963
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
@@ -2966,7 +2966,7 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
2966
2966
|
* </note>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
Type?: RuleGroupType;
|
|
2969
|
+
Type?: RuleGroupType | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation.
|
|
2972
2972
|
* When you update a rule group, you are limited to this capacity. When you reference a rule group
|
|
@@ -2975,17 +2975,17 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
2975
2975
|
* <a>CreateRuleGroup</a> with <code>DryRun</code> set to <code>TRUE</code>. </p>
|
|
2976
2976
|
* @public
|
|
2977
2977
|
*/
|
|
2978
|
-
Capacity?: number;
|
|
2978
|
+
Capacity?: number | undefined;
|
|
2979
2979
|
/**
|
|
2980
2980
|
* <p>Additional options governing how Network Firewall handles the rule group. You can only use these for stateful rule groups.</p>
|
|
2981
2981
|
* @public
|
|
2982
2982
|
*/
|
|
2983
|
-
StatefulRuleOptions?: StatefulRuleOptions;
|
|
2983
|
+
StatefulRuleOptions?: StatefulRuleOptions | undefined;
|
|
2984
2984
|
/**
|
|
2985
2985
|
* <p>The last time that the rule group was changed.</p>
|
|
2986
2986
|
* @public
|
|
2987
2987
|
*/
|
|
2988
|
-
LastModifiedTime?: Date;
|
|
2988
|
+
LastModifiedTime?: Date | undefined;
|
|
2989
2989
|
}
|
|
2990
2990
|
/**
|
|
2991
2991
|
* @public
|
|
@@ -2996,13 +2996,13 @@ export interface DescribeTLSInspectionConfigurationRequest {
|
|
|
2996
2996
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
2997
2997
|
* @public
|
|
2998
2998
|
*/
|
|
2999
|
-
TLSInspectionConfigurationArn?: string;
|
|
2999
|
+
TLSInspectionConfigurationArn?: string | undefined;
|
|
3000
3000
|
/**
|
|
3001
3001
|
* <p>The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.</p>
|
|
3002
3002
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
TLSInspectionConfigurationName?: string;
|
|
3005
|
+
TLSInspectionConfigurationName?: string | undefined;
|
|
3006
3006
|
}
|
|
3007
3007
|
/**
|
|
3008
3008
|
* @public
|
|
@@ -3021,7 +3021,7 @@ export interface DescribeTLSInspectionConfigurationResponse {
|
|
|
3021
3021
|
* inspection configurations</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
TLSInspectionConfiguration?: TLSInspectionConfiguration;
|
|
3024
|
+
TLSInspectionConfiguration?: TLSInspectionConfiguration | undefined;
|
|
3025
3025
|
/**
|
|
3026
3026
|
* <p>The high-level properties of a TLS inspection configuration. This, along with the <a>TLSInspectionConfiguration</a>, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling <a>DescribeTLSInspectionConfiguration</a>. </p>
|
|
3027
3027
|
* @public
|
|
@@ -3038,19 +3038,19 @@ export interface DisassociateSubnetsRequest {
|
|
|
3038
3038
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3039
3039
|
* @public
|
|
3040
3040
|
*/
|
|
3041
|
-
UpdateToken?: string;
|
|
3041
|
+
UpdateToken?: string | undefined;
|
|
3042
3042
|
/**
|
|
3043
3043
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3044
3044
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3045
3045
|
* @public
|
|
3046
3046
|
*/
|
|
3047
|
-
FirewallArn?: string;
|
|
3047
|
+
FirewallArn?: string | undefined;
|
|
3048
3048
|
/**
|
|
3049
3049
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3050
3050
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3051
3051
|
* @public
|
|
3052
3052
|
*/
|
|
3053
|
-
FirewallName?: string;
|
|
3053
|
+
FirewallName?: string | undefined;
|
|
3054
3054
|
/**
|
|
3055
3055
|
* <p>The unique identifiers for the subnets that you want to disassociate. </p>
|
|
3056
3056
|
* @public
|
|
@@ -3065,24 +3065,24 @@ export interface DisassociateSubnetsResponse {
|
|
|
3065
3065
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
FirewallArn?: string;
|
|
3068
|
+
FirewallArn?: string | undefined;
|
|
3069
3069
|
/**
|
|
3070
3070
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3071
3071
|
* @public
|
|
3072
3072
|
*/
|
|
3073
|
-
FirewallName?: string;
|
|
3073
|
+
FirewallName?: string | undefined;
|
|
3074
3074
|
/**
|
|
3075
3075
|
* <p>The IDs of the subnets that are associated with the firewall. </p>
|
|
3076
3076
|
* @public
|
|
3077
3077
|
*/
|
|
3078
|
-
SubnetMappings?: SubnetMapping[];
|
|
3078
|
+
SubnetMappings?: SubnetMapping[] | undefined;
|
|
3079
3079
|
/**
|
|
3080
3080
|
* <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
|
|
3081
3081
|
* <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
|
|
3082
3082
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
UpdateToken?: string;
|
|
3085
|
+
UpdateToken?: string | undefined;
|
|
3086
3086
|
}
|
|
3087
3087
|
/**
|
|
3088
3088
|
* <p>High-level information about a firewall, returned by operations like create and
|
|
@@ -3095,12 +3095,12 @@ export interface FirewallMetadata {
|
|
|
3095
3095
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3096
3096
|
* @public
|
|
3097
3097
|
*/
|
|
3098
|
-
FirewallName?: string;
|
|
3098
|
+
FirewallName?: string | undefined;
|
|
3099
3099
|
/**
|
|
3100
3100
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3101
3101
|
* @public
|
|
3102
3102
|
*/
|
|
3103
|
-
FirewallArn?: string;
|
|
3103
|
+
FirewallArn?: string | undefined;
|
|
3104
3104
|
}
|
|
3105
3105
|
/**
|
|
3106
3106
|
* <p>High-level information about a firewall policy, returned by operations like create and
|
|
@@ -3113,12 +3113,12 @@ export interface FirewallPolicyMetadata {
|
|
|
3113
3113
|
* <p>The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.</p>
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
Name?: string;
|
|
3116
|
+
Name?: string | undefined;
|
|
3117
3117
|
/**
|
|
3118
3118
|
* <p>The Amazon Resource Name (ARN) of the firewall policy.</p>
|
|
3119
3119
|
* @public
|
|
3120
3120
|
*/
|
|
3121
|
-
Arn?: string;
|
|
3121
|
+
Arn?: string | undefined;
|
|
3122
3122
|
}
|
|
3123
3123
|
/**
|
|
3124
3124
|
* @public
|
|
@@ -3130,14 +3130,14 @@ export interface ListFirewallPoliciesRequest {
|
|
|
3130
3130
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3131
3131
|
* @public
|
|
3132
3132
|
*/
|
|
3133
|
-
NextToken?: string;
|
|
3133
|
+
NextToken?: string | undefined;
|
|
3134
3134
|
/**
|
|
3135
3135
|
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
3136
3136
|
* objects are available, in the response, Network Firewall provides a
|
|
3137
3137
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
MaxResults?: number;
|
|
3140
|
+
MaxResults?: number | undefined;
|
|
3141
3141
|
}
|
|
3142
3142
|
/**
|
|
3143
3143
|
* @public
|
|
@@ -3149,13 +3149,13 @@ export interface ListFirewallPoliciesResponse {
|
|
|
3149
3149
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3150
3150
|
* @public
|
|
3151
3151
|
*/
|
|
3152
|
-
NextToken?: string;
|
|
3152
|
+
NextToken?: string | undefined;
|
|
3153
3153
|
/**
|
|
3154
3154
|
* <p>The metadata for the firewall policies. Depending on your setting for max results and
|
|
3155
3155
|
* the number of firewall policies that you have, this might not be the full list. </p>
|
|
3156
3156
|
* @public
|
|
3157
3157
|
*/
|
|
3158
|
-
FirewallPolicies?: FirewallPolicyMetadata[];
|
|
3158
|
+
FirewallPolicies?: FirewallPolicyMetadata[] | undefined;
|
|
3159
3159
|
}
|
|
3160
3160
|
/**
|
|
3161
3161
|
* @public
|
|
@@ -3167,20 +3167,20 @@ export interface ListFirewallsRequest {
|
|
|
3167
3167
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
NextToken?: string;
|
|
3170
|
+
NextToken?: string | undefined;
|
|
3171
3171
|
/**
|
|
3172
3172
|
* <p>The unique identifiers of the VPCs that you want Network Firewall to retrieve the firewalls
|
|
3173
3173
|
* for. Leave this blank to retrieve all firewalls that you have defined.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
VpcIds?: string[];
|
|
3176
|
+
VpcIds?: string[] | undefined;
|
|
3177
3177
|
/**
|
|
3178
3178
|
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
3179
3179
|
* objects are available, in the response, Network Firewall provides a
|
|
3180
3180
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
3181
3181
|
* @public
|
|
3182
3182
|
*/
|
|
3183
|
-
MaxResults?: number;
|
|
3183
|
+
MaxResults?: number | undefined;
|
|
3184
3184
|
}
|
|
3185
3185
|
/**
|
|
3186
3186
|
* @public
|
|
@@ -3192,14 +3192,14 @@ export interface ListFirewallsResponse {
|
|
|
3192
3192
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
NextToken?: string;
|
|
3195
|
+
NextToken?: string | undefined;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* <p>The firewall metadata objects for the VPCs that you specified. Depending on your setting
|
|
3198
3198
|
* for max results and the number of firewalls you have, a single call might not be the full
|
|
3199
3199
|
* list. </p>
|
|
3200
3200
|
* @public
|
|
3201
3201
|
*/
|
|
3202
|
-
Firewalls?: FirewallMetadata[];
|
|
3202
|
+
Firewalls?: FirewallMetadata[] | undefined;
|
|
3203
3203
|
}
|
|
3204
3204
|
/**
|
|
3205
3205
|
* @public
|
|
@@ -3235,31 +3235,31 @@ export interface ListRuleGroupsRequest {
|
|
|
3235
3235
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3236
3236
|
* @public
|
|
3237
3237
|
*/
|
|
3238
|
-
NextToken?: string;
|
|
3238
|
+
NextToken?: string | undefined;
|
|
3239
3239
|
/**
|
|
3240
3240
|
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
3241
3241
|
* objects are available, in the response, Network Firewall provides a
|
|
3242
3242
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
3243
3243
|
* @public
|
|
3244
3244
|
*/
|
|
3245
|
-
MaxResults?: number;
|
|
3245
|
+
MaxResults?: number | undefined;
|
|
3246
3246
|
/**
|
|
3247
3247
|
* <p>The scope of the request. The default setting of <code>ACCOUNT</code> or a setting of
|
|
3248
3248
|
* <code>NULL</code> returns all of the rule groups in your account. A setting of
|
|
3249
3249
|
* <code>MANAGED</code> returns all available managed rule groups.</p>
|
|
3250
3250
|
* @public
|
|
3251
3251
|
*/
|
|
3252
|
-
Scope?: ResourceManagedStatus;
|
|
3252
|
+
Scope?: ResourceManagedStatus | undefined;
|
|
3253
3253
|
/**
|
|
3254
3254
|
* <p>Indicates the general category of the Amazon Web Services managed rule group.</p>
|
|
3255
3255
|
* @public
|
|
3256
3256
|
*/
|
|
3257
|
-
ManagedType?: ResourceManagedType;
|
|
3257
|
+
ManagedType?: ResourceManagedType | undefined;
|
|
3258
3258
|
/**
|
|
3259
3259
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.</p>
|
|
3260
3260
|
* @public
|
|
3261
3261
|
*/
|
|
3262
|
-
Type?: RuleGroupType;
|
|
3262
|
+
Type?: RuleGroupType | undefined;
|
|
3263
3263
|
}
|
|
3264
3264
|
/**
|
|
3265
3265
|
* <p>High-level information about a rule group, returned by <a>ListRuleGroups</a>.
|
|
@@ -3272,12 +3272,12 @@ export interface RuleGroupMetadata {
|
|
|
3272
3272
|
* <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
|
|
3273
3273
|
* @public
|
|
3274
3274
|
*/
|
|
3275
|
-
Name?: string;
|
|
3275
|
+
Name?: string | undefined;
|
|
3276
3276
|
/**
|
|
3277
3277
|
* <p>The Amazon Resource Name (ARN) of the rule group.</p>
|
|
3278
3278
|
* @public
|
|
3279
3279
|
*/
|
|
3280
|
-
Arn?: string;
|
|
3280
|
+
Arn?: string | undefined;
|
|
3281
3281
|
}
|
|
3282
3282
|
/**
|
|
3283
3283
|
* @public
|
|
@@ -3289,13 +3289,13 @@ export interface ListRuleGroupsResponse {
|
|
|
3289
3289
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3290
3290
|
* @public
|
|
3291
3291
|
*/
|
|
3292
|
-
NextToken?: string;
|
|
3292
|
+
NextToken?: string | undefined;
|
|
3293
3293
|
/**
|
|
3294
3294
|
* <p>The rule group metadata objects that you've defined. Depending on your setting for max
|
|
3295
3295
|
* results and the number of rule groups, this might not be the full list. </p>
|
|
3296
3296
|
* @public
|
|
3297
3297
|
*/
|
|
3298
|
-
RuleGroups?: RuleGroupMetadata[];
|
|
3298
|
+
RuleGroups?: RuleGroupMetadata[] | undefined;
|
|
3299
3299
|
}
|
|
3300
3300
|
/**
|
|
3301
3301
|
* @public
|
|
@@ -3307,14 +3307,14 @@ export interface ListTagsForResourceRequest {
|
|
|
3307
3307
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3308
3308
|
* @public
|
|
3309
3309
|
*/
|
|
3310
|
-
NextToken?: string;
|
|
3310
|
+
NextToken?: string | undefined;
|
|
3311
3311
|
/**
|
|
3312
3312
|
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
3313
3313
|
* objects are available, in the response, Network Firewall provides a
|
|
3314
3314
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
3315
3315
|
* @public
|
|
3316
3316
|
*/
|
|
3317
|
-
MaxResults?: number;
|
|
3317
|
+
MaxResults?: number | undefined;
|
|
3318
3318
|
/**
|
|
3319
3319
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
3320
3320
|
* @public
|
|
@@ -3331,12 +3331,12 @@ export interface ListTagsForResourceResponse {
|
|
|
3331
3331
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3332
3332
|
* @public
|
|
3333
3333
|
*/
|
|
3334
|
-
NextToken?: string;
|
|
3334
|
+
NextToken?: string | undefined;
|
|
3335
3335
|
/**
|
|
3336
3336
|
* <p>The tags that are associated with the resource. </p>
|
|
3337
3337
|
* @public
|
|
3338
3338
|
*/
|
|
3339
|
-
Tags?: Tag[];
|
|
3339
|
+
Tags?: Tag[] | undefined;
|
|
3340
3340
|
}
|
|
3341
3341
|
/**
|
|
3342
3342
|
* @public
|
|
@@ -3348,14 +3348,14 @@ export interface ListTLSInspectionConfigurationsRequest {
|
|
|
3348
3348
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3349
3349
|
* @public
|
|
3350
3350
|
*/
|
|
3351
|
-
NextToken?: string;
|
|
3351
|
+
NextToken?: string | undefined;
|
|
3352
3352
|
/**
|
|
3353
3353
|
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
3354
3354
|
* objects are available, in the response, Network Firewall provides a
|
|
3355
3355
|
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
3356
3356
|
* @public
|
|
3357
3357
|
*/
|
|
3358
|
-
MaxResults?: number;
|
|
3358
|
+
MaxResults?: number | undefined;
|
|
3359
3359
|
}
|
|
3360
3360
|
/**
|
|
3361
3361
|
* <p>High-level information about a TLS inspection configuration, returned by <code>ListTLSInspectionConfigurations</code>. You can use the information provided in the metadata to retrieve and manage a TLS configuration.</p>
|
|
@@ -3366,12 +3366,12 @@ export interface TLSInspectionConfigurationMetadata {
|
|
|
3366
3366
|
* <p>The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.</p>
|
|
3367
3367
|
* @public
|
|
3368
3368
|
*/
|
|
3369
|
-
Name?: string;
|
|
3369
|
+
Name?: string | undefined;
|
|
3370
3370
|
/**
|
|
3371
3371
|
* <p>The Amazon Resource Name (ARN) of the TLS inspection configuration.</p>
|
|
3372
3372
|
* @public
|
|
3373
3373
|
*/
|
|
3374
|
-
Arn?: string;
|
|
3374
|
+
Arn?: string | undefined;
|
|
3375
3375
|
}
|
|
3376
3376
|
/**
|
|
3377
3377
|
* @public
|
|
@@ -3383,12 +3383,12 @@ export interface ListTLSInspectionConfigurationsResponse {
|
|
|
3383
3383
|
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
3384
3384
|
* @public
|
|
3385
3385
|
*/
|
|
3386
|
-
NextToken?: string;
|
|
3386
|
+
NextToken?: string | undefined;
|
|
3387
3387
|
/**
|
|
3388
3388
|
* <p>The TLS inspection configuration metadata objects that you've defined. Depending on your setting for max results and the number of TLS inspection configurations, this might not be the full list.</p>
|
|
3389
3389
|
* @public
|
|
3390
3390
|
*/
|
|
3391
|
-
TLSInspectionConfigurations?: TLSInspectionConfigurationMetadata[];
|
|
3391
|
+
TLSInspectionConfigurations?: TLSInspectionConfigurationMetadata[] | undefined;
|
|
3392
3392
|
}
|
|
3393
3393
|
/**
|
|
3394
3394
|
* <p>Unable to send logs to a configured logging destination. </p>
|
|
@@ -3397,7 +3397,7 @@ export interface ListTLSInspectionConfigurationsResponse {
|
|
|
3397
3397
|
export declare class LogDestinationPermissionException extends __BaseException {
|
|
3398
3398
|
readonly name: "LogDestinationPermissionException";
|
|
3399
3399
|
readonly $fault: "client";
|
|
3400
|
-
Message?: string;
|
|
3400
|
+
Message?: string | undefined;
|
|
3401
3401
|
/**
|
|
3402
3402
|
* @internal
|
|
3403
3403
|
*/
|
|
@@ -3493,7 +3493,7 @@ export interface UntagResourceResponse {
|
|
|
3493
3493
|
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
3494
3494
|
readonly name: "ResourceOwnerCheckException";
|
|
3495
3495
|
readonly $fault: "client";
|
|
3496
|
-
Message?: string;
|
|
3496
|
+
Message?: string | undefined;
|
|
3497
3497
|
/**
|
|
3498
3498
|
* @internal
|
|
3499
3499
|
*/
|
|
@@ -3509,19 +3509,19 @@ export interface UpdateFirewallDeleteProtectionRequest {
|
|
|
3509
3509
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3510
3510
|
* @public
|
|
3511
3511
|
*/
|
|
3512
|
-
UpdateToken?: string;
|
|
3512
|
+
UpdateToken?: string | undefined;
|
|
3513
3513
|
/**
|
|
3514
3514
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3515
3515
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3516
3516
|
* @public
|
|
3517
3517
|
*/
|
|
3518
|
-
FirewallArn?: string;
|
|
3518
|
+
FirewallArn?: string | undefined;
|
|
3519
3519
|
/**
|
|
3520
3520
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3521
3521
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
FirewallName?: string;
|
|
3524
|
+
FirewallName?: string | undefined;
|
|
3525
3525
|
/**
|
|
3526
3526
|
* <p>A flag indicating whether it is possible to delete the firewall. A setting of <code>TRUE</code> indicates
|
|
3527
3527
|
* that the firewall is protected against deletion. Use this setting to protect against
|
|
@@ -3538,26 +3538,26 @@ export interface UpdateFirewallDeleteProtectionResponse {
|
|
|
3538
3538
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3539
3539
|
* @public
|
|
3540
3540
|
*/
|
|
3541
|
-
FirewallArn?: string;
|
|
3541
|
+
FirewallArn?: string | undefined;
|
|
3542
3542
|
/**
|
|
3543
3543
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3544
3544
|
* @public
|
|
3545
3545
|
*/
|
|
3546
|
-
FirewallName?: string;
|
|
3546
|
+
FirewallName?: string | undefined;
|
|
3547
3547
|
/**
|
|
3548
3548
|
* <p>A flag indicating whether it is possible to delete the firewall. A setting of <code>TRUE</code> indicates
|
|
3549
3549
|
* that the firewall is protected against deletion. Use this setting to protect against
|
|
3550
3550
|
* accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to <code>TRUE</code>.</p>
|
|
3551
3551
|
* @public
|
|
3552
3552
|
*/
|
|
3553
|
-
DeleteProtection?: boolean;
|
|
3553
|
+
DeleteProtection?: boolean | undefined;
|
|
3554
3554
|
/**
|
|
3555
3555
|
* <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
|
|
3556
3556
|
* <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
|
|
3557
3557
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3558
3558
|
* @public
|
|
3559
3559
|
*/
|
|
3560
|
-
UpdateToken?: string;
|
|
3560
|
+
UpdateToken?: string | undefined;
|
|
3561
3561
|
}
|
|
3562
3562
|
/**
|
|
3563
3563
|
* @public
|
|
@@ -3569,25 +3569,25 @@ export interface UpdateFirewallDescriptionRequest {
|
|
|
3569
3569
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3570
3570
|
* @public
|
|
3571
3571
|
*/
|
|
3572
|
-
UpdateToken?: string;
|
|
3572
|
+
UpdateToken?: string | undefined;
|
|
3573
3573
|
/**
|
|
3574
3574
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3575
3575
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3576
3576
|
* @public
|
|
3577
3577
|
*/
|
|
3578
|
-
FirewallArn?: string;
|
|
3578
|
+
FirewallArn?: string | undefined;
|
|
3579
3579
|
/**
|
|
3580
3580
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3581
3581
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3582
3582
|
* @public
|
|
3583
3583
|
*/
|
|
3584
|
-
FirewallName?: string;
|
|
3584
|
+
FirewallName?: string | undefined;
|
|
3585
3585
|
/**
|
|
3586
3586
|
* <p>The new description for the firewall. If you omit this setting, Network Firewall removes
|
|
3587
3587
|
* the description for the firewall.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
Description?: string;
|
|
3590
|
+
Description?: string | undefined;
|
|
3591
3591
|
}
|
|
3592
3592
|
/**
|
|
3593
3593
|
* @public
|
|
@@ -3597,24 +3597,24 @@ export interface UpdateFirewallDescriptionResponse {
|
|
|
3597
3597
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3598
3598
|
* @public
|
|
3599
3599
|
*/
|
|
3600
|
-
FirewallArn?: string;
|
|
3600
|
+
FirewallArn?: string | undefined;
|
|
3601
3601
|
/**
|
|
3602
3602
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3603
3603
|
* @public
|
|
3604
3604
|
*/
|
|
3605
|
-
FirewallName?: string;
|
|
3605
|
+
FirewallName?: string | undefined;
|
|
3606
3606
|
/**
|
|
3607
3607
|
* <p>A description of the firewall.</p>
|
|
3608
3608
|
* @public
|
|
3609
3609
|
*/
|
|
3610
|
-
Description?: string;
|
|
3610
|
+
Description?: string | undefined;
|
|
3611
3611
|
/**
|
|
3612
3612
|
* <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
|
|
3613
3613
|
* <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
|
|
3614
3614
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3615
3615
|
* @public
|
|
3616
3616
|
*/
|
|
3617
|
-
UpdateToken?: string;
|
|
3617
|
+
UpdateToken?: string | undefined;
|
|
3618
3618
|
}
|
|
3619
3619
|
/**
|
|
3620
3620
|
* @public
|
|
@@ -3626,22 +3626,22 @@ export interface UpdateFirewallEncryptionConfigurationRequest {
|
|
|
3626
3626
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3627
3627
|
* @public
|
|
3628
3628
|
*/
|
|
3629
|
-
UpdateToken?: string;
|
|
3629
|
+
UpdateToken?: string | undefined;
|
|
3630
3630
|
/**
|
|
3631
3631
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3632
3632
|
* @public
|
|
3633
3633
|
*/
|
|
3634
|
-
FirewallArn?: string;
|
|
3634
|
+
FirewallArn?: string | undefined;
|
|
3635
3635
|
/**
|
|
3636
3636
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3637
3637
|
* @public
|
|
3638
3638
|
*/
|
|
3639
|
-
FirewallName?: string;
|
|
3639
|
+
FirewallName?: string | undefined;
|
|
3640
3640
|
/**
|
|
3641
3641
|
* <p>A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/kms-encryption-at-rest.html">Encryption at rest with Amazon Web Services Key Managment Service</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
3642
3642
|
* @public
|
|
3643
3643
|
*/
|
|
3644
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
3644
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
3645
3645
|
}
|
|
3646
3646
|
/**
|
|
3647
3647
|
* @public
|
|
@@ -3651,24 +3651,24 @@ export interface UpdateFirewallEncryptionConfigurationResponse {
|
|
|
3651
3651
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3652
3652
|
* @public
|
|
3653
3653
|
*/
|
|
3654
|
-
FirewallArn?: string;
|
|
3654
|
+
FirewallArn?: string | undefined;
|
|
3655
3655
|
/**
|
|
3656
3656
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3657
3657
|
* @public
|
|
3658
3658
|
*/
|
|
3659
|
-
FirewallName?: string;
|
|
3659
|
+
FirewallName?: string | undefined;
|
|
3660
3660
|
/**
|
|
3661
3661
|
* <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
|
|
3662
3662
|
* <p>To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.</p>
|
|
3663
3663
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3664
3664
|
* @public
|
|
3665
3665
|
*/
|
|
3666
|
-
UpdateToken?: string;
|
|
3666
|
+
UpdateToken?: string | undefined;
|
|
3667
3667
|
/**
|
|
3668
3668
|
* <p>A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/kms-encryption-at-rest.html">Encryption at rest with Amazon Web Services Key Managment Service</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
3669
3669
|
* @public
|
|
3670
3670
|
*/
|
|
3671
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
3671
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
3672
3672
|
}
|
|
3673
3673
|
/**
|
|
3674
3674
|
* @public
|
|
@@ -3685,13 +3685,13 @@ export interface UpdateFirewallPolicyRequest {
|
|
|
3685
3685
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3686
3686
|
* @public
|
|
3687
3687
|
*/
|
|
3688
|
-
FirewallPolicyArn?: string;
|
|
3688
|
+
FirewallPolicyArn?: string | undefined;
|
|
3689
3689
|
/**
|
|
3690
3690
|
* <p>The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.</p>
|
|
3691
3691
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3692
3692
|
* @public
|
|
3693
3693
|
*/
|
|
3694
|
-
FirewallPolicyName?: string;
|
|
3694
|
+
FirewallPolicyName?: string | undefined;
|
|
3695
3695
|
/**
|
|
3696
3696
|
* <p>The updated firewall policy to use for the firewall. You can't add or remove a <a>TLSInspectionConfiguration</a> after you create a firewall policy. However, you can replace an existing TLS inspection configuration with another <code>TLSInspectionConfiguration</code>.</p>
|
|
3697
3697
|
* @public
|
|
@@ -3701,7 +3701,7 @@ export interface UpdateFirewallPolicyRequest {
|
|
|
3701
3701
|
* <p>A description of the firewall policy.</p>
|
|
3702
3702
|
* @public
|
|
3703
3703
|
*/
|
|
3704
|
-
Description?: string;
|
|
3704
|
+
Description?: string | undefined;
|
|
3705
3705
|
/**
|
|
3706
3706
|
* <p>Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. </p>
|
|
3707
3707
|
* <p>If set to <code>TRUE</code>, Network Firewall checks whether the request can run successfully,
|
|
@@ -3711,12 +3711,12 @@ export interface UpdateFirewallPolicyRequest {
|
|
|
3711
3711
|
* <p>If set to <code>FALSE</code>, Network Firewall makes the requested changes to your resources. </p>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
DryRun?: boolean;
|
|
3714
|
+
DryRun?: boolean | undefined;
|
|
3715
3715
|
/**
|
|
3716
3716
|
* <p>A complex type that contains settings for encryption of your firewall policy resources.</p>
|
|
3717
3717
|
* @public
|
|
3718
3718
|
*/
|
|
3719
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
3719
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
3720
3720
|
}
|
|
3721
3721
|
/**
|
|
3722
3722
|
* @public
|
|
@@ -3744,19 +3744,19 @@ export interface UpdateFirewallPolicyChangeProtectionRequest {
|
|
|
3744
3744
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3745
3745
|
* @public
|
|
3746
3746
|
*/
|
|
3747
|
-
UpdateToken?: string;
|
|
3747
|
+
UpdateToken?: string | undefined;
|
|
3748
3748
|
/**
|
|
3749
3749
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3750
3750
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3751
3751
|
* @public
|
|
3752
3752
|
*/
|
|
3753
|
-
FirewallArn?: string;
|
|
3753
|
+
FirewallArn?: string | undefined;
|
|
3754
3754
|
/**
|
|
3755
3755
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3756
3756
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
FirewallName?: string;
|
|
3759
|
+
FirewallName?: string | undefined;
|
|
3760
3760
|
/**
|
|
3761
3761
|
* <p>A setting indicating whether the firewall is protected against a change to the firewall policy association.
|
|
3762
3762
|
* Use this setting to protect against
|
|
@@ -3775,24 +3775,24 @@ export interface UpdateFirewallPolicyChangeProtectionResponse {
|
|
|
3775
3775
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3776
3776
|
* @public
|
|
3777
3777
|
*/
|
|
3778
|
-
UpdateToken?: string;
|
|
3778
|
+
UpdateToken?: string | undefined;
|
|
3779
3779
|
/**
|
|
3780
3780
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3781
3781
|
* @public
|
|
3782
3782
|
*/
|
|
3783
|
-
FirewallArn?: string;
|
|
3783
|
+
FirewallArn?: string | undefined;
|
|
3784
3784
|
/**
|
|
3785
3785
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3786
3786
|
* @public
|
|
3787
3787
|
*/
|
|
3788
|
-
FirewallName?: string;
|
|
3788
|
+
FirewallName?: string | undefined;
|
|
3789
3789
|
/**
|
|
3790
3790
|
* <p>A setting indicating whether the firewall is protected against a change to the firewall policy association.
|
|
3791
3791
|
* Use this setting to protect against
|
|
3792
3792
|
* accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to <code>TRUE</code>.</p>
|
|
3793
3793
|
* @public
|
|
3794
3794
|
*/
|
|
3795
|
-
FirewallPolicyChangeProtection?: boolean;
|
|
3795
|
+
FirewallPolicyChangeProtection?: boolean | undefined;
|
|
3796
3796
|
}
|
|
3797
3797
|
/**
|
|
3798
3798
|
* @public
|
|
@@ -3803,19 +3803,19 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
3803
3803
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3804
3804
|
* @public
|
|
3805
3805
|
*/
|
|
3806
|
-
FirewallArn?: string;
|
|
3806
|
+
FirewallArn?: string | undefined;
|
|
3807
3807
|
/**
|
|
3808
3808
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3809
3809
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3810
3810
|
* @public
|
|
3811
3811
|
*/
|
|
3812
|
-
FirewallName?: string;
|
|
3812
|
+
FirewallName?: string | undefined;
|
|
3813
3813
|
/**
|
|
3814
3814
|
* <p>Defines how Network Firewall performs logging for a firewall. If you omit this setting,
|
|
3815
3815
|
* Network Firewall disables logging for the firewall.</p>
|
|
3816
3816
|
* @public
|
|
3817
3817
|
*/
|
|
3818
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
3818
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
3819
3819
|
}
|
|
3820
3820
|
/**
|
|
3821
3821
|
* @public
|
|
@@ -3825,17 +3825,17 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
3825
3825
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3826
3826
|
* @public
|
|
3827
3827
|
*/
|
|
3828
|
-
FirewallArn?: string;
|
|
3828
|
+
FirewallArn?: string | undefined;
|
|
3829
3829
|
/**
|
|
3830
3830
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3831
3831
|
* @public
|
|
3832
3832
|
*/
|
|
3833
|
-
FirewallName?: string;
|
|
3833
|
+
FirewallName?: string | undefined;
|
|
3834
3834
|
/**
|
|
3835
3835
|
* <p>Defines how Network Firewall performs logging for a <a>Firewall</a>. </p>
|
|
3836
3836
|
* @public
|
|
3837
3837
|
*/
|
|
3838
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
3838
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
3839
3839
|
}
|
|
3840
3840
|
/**
|
|
3841
3841
|
* @public
|
|
@@ -3852,13 +3852,13 @@ export interface UpdateRuleGroupRequest {
|
|
|
3852
3852
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3853
3853
|
* @public
|
|
3854
3854
|
*/
|
|
3855
|
-
RuleGroupArn?: string;
|
|
3855
|
+
RuleGroupArn?: string | undefined;
|
|
3856
3856
|
/**
|
|
3857
3857
|
* <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
|
|
3858
3858
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
RuleGroupName?: string;
|
|
3861
|
+
RuleGroupName?: string | undefined;
|
|
3862
3862
|
/**
|
|
3863
3863
|
* <p>An object that defines the rule group rules. </p>
|
|
3864
3864
|
* <note>
|
|
@@ -3866,7 +3866,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
3866
3866
|
* </note>
|
|
3867
3867
|
* @public
|
|
3868
3868
|
*/
|
|
3869
|
-
RuleGroup?: RuleGroup;
|
|
3869
|
+
RuleGroup?: RuleGroup | undefined;
|
|
3870
3870
|
/**
|
|
3871
3871
|
* <p>A string containing stateful rule group rules specifications in Suricata flat format, with one rule
|
|
3872
3872
|
* per line. Use this to import your existing Suricata compatible rule groups. </p>
|
|
@@ -3877,7 +3877,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
3877
3877
|
* response returns a <a>RuleGroup</a> object that Network Firewall has populated from your string. </p>
|
|
3878
3878
|
* @public
|
|
3879
3879
|
*/
|
|
3880
|
-
Rules?: string;
|
|
3880
|
+
Rules?: string | undefined;
|
|
3881
3881
|
/**
|
|
3882
3882
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
3883
3883
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
@@ -3886,12 +3886,12 @@ export interface UpdateRuleGroupRequest {
|
|
|
3886
3886
|
* </note>
|
|
3887
3887
|
* @public
|
|
3888
3888
|
*/
|
|
3889
|
-
Type?: RuleGroupType;
|
|
3889
|
+
Type?: RuleGroupType | undefined;
|
|
3890
3890
|
/**
|
|
3891
3891
|
* <p>A description of the rule group. </p>
|
|
3892
3892
|
* @public
|
|
3893
3893
|
*/
|
|
3894
|
-
Description?: string;
|
|
3894
|
+
Description?: string | undefined;
|
|
3895
3895
|
/**
|
|
3896
3896
|
* <p>Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. </p>
|
|
3897
3897
|
* <p>If set to <code>TRUE</code>, Network Firewall checks whether the request can run successfully,
|
|
@@ -3901,22 +3901,22 @@ export interface UpdateRuleGroupRequest {
|
|
|
3901
3901
|
* <p>If set to <code>FALSE</code>, Network Firewall makes the requested changes to your resources. </p>
|
|
3902
3902
|
* @public
|
|
3903
3903
|
*/
|
|
3904
|
-
DryRun?: boolean;
|
|
3904
|
+
DryRun?: boolean | undefined;
|
|
3905
3905
|
/**
|
|
3906
3906
|
* <p>A complex type that contains settings for encryption of your rule group resources.</p>
|
|
3907
3907
|
* @public
|
|
3908
3908
|
*/
|
|
3909
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
3909
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
3910
3910
|
/**
|
|
3911
3911
|
* <p>A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to keep track of updates made to the originating rule group.</p>
|
|
3912
3912
|
* @public
|
|
3913
3913
|
*/
|
|
3914
|
-
SourceMetadata?: SourceMetadata;
|
|
3914
|
+
SourceMetadata?: SourceMetadata | undefined;
|
|
3915
3915
|
/**
|
|
3916
3916
|
* <p>Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to <code>TRUE</code>, Network Firewall runs the analysis and then updates the rule group for you. To run the stateless rule group analyzer without updating the rule group, set <code>DryRun</code> to <code>TRUE</code>. </p>
|
|
3917
3917
|
* @public
|
|
3918
3918
|
*/
|
|
3919
|
-
AnalyzeRuleGroup?: boolean;
|
|
3919
|
+
AnalyzeRuleGroup?: boolean | undefined;
|
|
3920
3920
|
}
|
|
3921
3921
|
/**
|
|
3922
3922
|
* @public
|
|
@@ -3944,19 +3944,19 @@ export interface UpdateSubnetChangeProtectionRequest {
|
|
|
3944
3944
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3945
3945
|
* @public
|
|
3946
3946
|
*/
|
|
3947
|
-
UpdateToken?: string;
|
|
3947
|
+
UpdateToken?: string | undefined;
|
|
3948
3948
|
/**
|
|
3949
3949
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3950
3950
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3951
3951
|
* @public
|
|
3952
3952
|
*/
|
|
3953
|
-
FirewallArn?: string;
|
|
3953
|
+
FirewallArn?: string | undefined;
|
|
3954
3954
|
/**
|
|
3955
3955
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3956
3956
|
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3957
3957
|
* @public
|
|
3958
3958
|
*/
|
|
3959
|
-
FirewallName?: string;
|
|
3959
|
+
FirewallName?: string | undefined;
|
|
3960
3960
|
/**
|
|
3961
3961
|
* <p>A setting indicating whether the firewall is protected against changes to the subnet associations.
|
|
3962
3962
|
* Use this setting to protect against
|
|
@@ -3975,24 +3975,24 @@ export interface UpdateSubnetChangeProtectionResponse {
|
|
|
3975
3975
|
* <p>To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. </p>
|
|
3976
3976
|
* @public
|
|
3977
3977
|
*/
|
|
3978
|
-
UpdateToken?: string;
|
|
3978
|
+
UpdateToken?: string | undefined;
|
|
3979
3979
|
/**
|
|
3980
3980
|
* <p>The Amazon Resource Name (ARN) of the firewall.</p>
|
|
3981
3981
|
* @public
|
|
3982
3982
|
*/
|
|
3983
|
-
FirewallArn?: string;
|
|
3983
|
+
FirewallArn?: string | undefined;
|
|
3984
3984
|
/**
|
|
3985
3985
|
* <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
|
|
3986
3986
|
* @public
|
|
3987
3987
|
*/
|
|
3988
|
-
FirewallName?: string;
|
|
3988
|
+
FirewallName?: string | undefined;
|
|
3989
3989
|
/**
|
|
3990
3990
|
* <p>A setting indicating whether the firewall is protected against changes to the subnet associations.
|
|
3991
3991
|
* Use this setting to protect against
|
|
3992
3992
|
* accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to <code>TRUE</code>.</p>
|
|
3993
3993
|
* @public
|
|
3994
3994
|
*/
|
|
3995
|
-
SubnetChangeProtection?: boolean;
|
|
3995
|
+
SubnetChangeProtection?: boolean | undefined;
|
|
3996
3996
|
}
|
|
3997
3997
|
/**
|
|
3998
3998
|
* @public
|
|
@@ -4002,12 +4002,12 @@ export interface UpdateTLSInspectionConfigurationRequest {
|
|
|
4002
4002
|
* <p>The Amazon Resource Name (ARN) of the TLS inspection configuration.</p>
|
|
4003
4003
|
* @public
|
|
4004
4004
|
*/
|
|
4005
|
-
TLSInspectionConfigurationArn?: string;
|
|
4005
|
+
TLSInspectionConfigurationArn?: string | undefined;
|
|
4006
4006
|
/**
|
|
4007
4007
|
* <p>The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
TLSInspectionConfigurationName?: string;
|
|
4010
|
+
TLSInspectionConfigurationName?: string | undefined;
|
|
4011
4011
|
/**
|
|
4012
4012
|
* <p>The object that defines a TLS inspection configuration. This, along with <a>TLSInspectionConfigurationResponse</a>, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling <a>DescribeTLSInspectionConfiguration</a>. </p>
|
|
4013
4013
|
* <p>Network Firewall uses a TLS inspection configuration to decrypt traffic. Network Firewall re-encrypts the traffic before sending it to its destination.</p>
|
|
@@ -4020,12 +4020,12 @@ export interface UpdateTLSInspectionConfigurationRequest {
|
|
|
4020
4020
|
* <p>A description of the TLS inspection configuration. </p>
|
|
4021
4021
|
* @public
|
|
4022
4022
|
*/
|
|
4023
|
-
Description?: string;
|
|
4023
|
+
Description?: string | undefined;
|
|
4024
4024
|
/**
|
|
4025
4025
|
* <p>A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration.</p>
|
|
4026
4026
|
* @public
|
|
4027
4027
|
*/
|
|
4028
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
4028
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
4029
4029
|
/**
|
|
4030
4030
|
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the TLS inspection configuration. The token marks the state of the TLS inspection configuration resource at the time of the request. </p>
|
|
4031
4031
|
* <p>To make changes to the TLS inspection configuration, you provide the token in your request. Network Firewall uses the token to ensure that the TLS inspection configuration hasn't changed since you last retrieved it. If it has changed, the operation fails with an <code>InvalidTokenException</code>. If this happens, retrieve the TLS inspection configuration again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. </p>
|