@aws-sdk/client-network-firewall 3.301.0 → 3.303.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.
Files changed (54) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/NetworkFirewall.js +75 -0
  3. package/dist-cjs/commands/CreateTLSInspectionConfigurationCommand.js +45 -0
  4. package/dist-cjs/commands/DeleteTLSInspectionConfigurationCommand.js +45 -0
  5. package/dist-cjs/commands/DescribeTLSInspectionConfigurationCommand.js +45 -0
  6. package/dist-cjs/commands/ListTLSInspectionConfigurationsCommand.js +45 -0
  7. package/dist-cjs/commands/UpdateTLSInspectionConfigurationCommand.js +45 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/endpoint/ruleset.js +3 -3
  10. package/dist-cjs/models/models_0.js +114 -135
  11. package/dist-cjs/pagination/ListTLSInspectionConfigurationsPaginator.js +29 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_json1_0.js +540 -2
  14. package/dist-es/NetworkFirewall.js +75 -0
  15. package/dist-es/commands/CreateTLSInspectionConfigurationCommand.js +41 -0
  16. package/dist-es/commands/DeleteTLSInspectionConfigurationCommand.js +41 -0
  17. package/dist-es/commands/DescribeTLSInspectionConfigurationCommand.js +41 -0
  18. package/dist-es/commands/ListTLSInspectionConfigurationsCommand.js +41 -0
  19. package/dist-es/commands/UpdateTLSInspectionConfigurationCommand.js +41 -0
  20. package/dist-es/commands/index.js +5 -0
  21. package/dist-es/endpoint/ruleset.js +3 -3
  22. package/dist-es/models/models_0.js +114 -135
  23. package/dist-es/pagination/ListTLSInspectionConfigurationsPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_json1_0.js +528 -0
  26. package/dist-types/NetworkFirewall.d.ts +53 -0
  27. package/dist-types/NetworkFirewallClient.d.ts +7 -2
  28. package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +1 -0
  29. package/dist-types/commands/CreateTLSInspectionConfigurationCommand.d.ts +145 -0
  30. package/dist-types/commands/DeleteTLSInspectionConfigurationCommand.d.ts +94 -0
  31. package/dist-types/commands/DescribeTLSInspectionConfigurationCommand.d.ts +90 -0
  32. package/dist-types/commands/ListTLSInspectionConfigurationsCommand.d.ts +87 -0
  33. package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +1 -0
  34. package/dist-types/commands/UpdateTLSInspectionConfigurationCommand.d.ts +144 -0
  35. package/dist-types/commands/index.d.ts +5 -0
  36. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  37. package/dist-types/models/models_0.d.ts +558 -115
  38. package/dist-types/pagination/ListTLSInspectionConfigurationsPaginator.d.ts +7 -0
  39. package/dist-types/pagination/index.d.ts +1 -0
  40. package/dist-types/protocols/Aws_json1_0.d.ts +15 -0
  41. package/dist-types/ts3.4/NetworkFirewall.d.ts +91 -0
  42. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +32 -2
  43. package/dist-types/ts3.4/commands/CreateTLSInspectionConfigurationCommand.d.ts +41 -0
  44. package/dist-types/ts3.4/commands/DeleteTLSInspectionConfigurationCommand.d.ts +41 -0
  45. package/dist-types/ts3.4/commands/DescribeTLSInspectionConfigurationCommand.d.ts +41 -0
  46. package/dist-types/ts3.4/commands/ListTLSInspectionConfigurationsCommand.d.ts +41 -0
  47. package/dist-types/ts3.4/commands/UpdateTLSInspectionConfigurationCommand.d.ts +41 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  49. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  50. package/dist-types/ts3.4/models/models_0.d.ts +244 -113
  51. package/dist-types/ts3.4/pagination/ListTLSInspectionConfigurationsPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  53. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
  54. package/package.json +34 -34
@@ -72,10 +72,11 @@ export declare class ThrottlingException extends __BaseException {
72
72
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
73
73
  );
74
74
  }
75
- export declare enum IPAddressType {
76
- DUALSTACK = "DUALSTACK",
77
- IPV4 = "IPV4",
78
- }
75
+ export declare const IPAddressType: {
76
+ readonly DUALSTACK: "DUALSTACK";
77
+ readonly IPV4: "IPV4";
78
+ };
79
+ export type IPAddressType = (typeof IPAddressType)[keyof typeof IPAddressType];
79
80
  export interface SubnetMapping {
80
81
  SubnetId: string | undefined;
81
82
  IPAddressType?: IPAddressType | string;
@@ -100,12 +101,14 @@ export declare class InsufficientCapacityException extends __BaseException {
100
101
  opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
101
102
  );
102
103
  }
103
- export declare enum AttachmentStatus {
104
- CREATING = "CREATING",
105
- DELETING = "DELETING",
106
- READY = "READY",
107
- SCALING = "SCALING",
108
- }
104
+ export declare const AttachmentStatus: {
105
+ readonly CREATING: "CREATING";
106
+ readonly DELETING: "DELETING";
107
+ readonly READY: "READY";
108
+ readonly SCALING: "SCALING";
109
+ };
110
+ export type AttachmentStatus =
111
+ (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
109
112
  export interface Attachment {
110
113
  SubnetId?: string;
111
114
  EndpointId?: string;
@@ -123,15 +126,25 @@ export interface CIDRSummary {
123
126
  export interface CapacityUsageSummary {
124
127
  CIDRs?: CIDRSummary;
125
128
  }
126
- export declare enum ConfigurationSyncState {
127
- CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
128
- IN_SYNC = "IN_SYNC",
129
- PENDING = "PENDING",
130
- }
131
- export declare enum EncryptionType {
132
- AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
133
- CUSTOMER_KMS = "CUSTOMER_KMS",
129
+ export interface TlsCertificateData {
130
+ CertificateArn?: string;
131
+ CertificateSerial?: string;
132
+ Status?: string;
133
+ StatusMessage?: string;
134
134
  }
135
+ export declare const ConfigurationSyncState: {
136
+ readonly CAPACITY_CONSTRAINED: "CAPACITY_CONSTRAINED";
137
+ readonly IN_SYNC: "IN_SYNC";
138
+ readonly PENDING: "PENDING";
139
+ };
140
+ export type ConfigurationSyncState =
141
+ (typeof ConfigurationSyncState)[keyof typeof ConfigurationSyncState];
142
+ export declare const EncryptionType: {
143
+ readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
144
+ readonly CUSTOMER_KMS: "CUSTOMER_KMS";
145
+ };
146
+ export type EncryptionType =
147
+ (typeof EncryptionType)[keyof typeof EncryptionType];
135
148
  export interface EncryptionConfiguration {
136
149
  KeyId?: string;
137
150
  Type: EncryptionType | string | undefined;
@@ -166,16 +179,20 @@ export interface Firewall {
166
179
  Tags?: Tag[];
167
180
  EncryptionConfiguration?: EncryptionConfiguration;
168
181
  }
169
- export declare enum FirewallStatusValue {
170
- DELETING = "DELETING",
171
- PROVISIONING = "PROVISIONING",
172
- READY = "READY",
173
- }
174
- export declare enum PerObjectSyncStatus {
175
- CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
176
- IN_SYNC = "IN_SYNC",
177
- PENDING = "PENDING",
178
- }
182
+ export declare const FirewallStatusValue: {
183
+ readonly DELETING: "DELETING";
184
+ readonly PROVISIONING: "PROVISIONING";
185
+ readonly READY: "READY";
186
+ };
187
+ export type FirewallStatusValue =
188
+ (typeof FirewallStatusValue)[keyof typeof FirewallStatusValue];
189
+ export declare const PerObjectSyncStatus: {
190
+ readonly CAPACITY_CONSTRAINED: "CAPACITY_CONSTRAINED";
191
+ readonly IN_SYNC: "IN_SYNC";
192
+ readonly PENDING: "PENDING";
193
+ };
194
+ export type PerObjectSyncStatus =
195
+ (typeof PerObjectSyncStatus)[keyof typeof PerObjectSyncStatus];
179
196
  export interface PerObjectStatus {
180
197
  SyncStatus?: PerObjectSyncStatus | string;
181
198
  UpdateToken?: string;
@@ -202,21 +219,26 @@ export declare class LimitExceededException extends __BaseException {
202
219
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
203
220
  );
204
221
  }
205
- export declare enum RuleOrder {
206
- DEFAULT_ACTION_ORDER = "DEFAULT_ACTION_ORDER",
207
- STRICT_ORDER = "STRICT_ORDER",
208
- }
209
- export declare enum StreamExceptionPolicy {
210
- CONTINUE = "CONTINUE",
211
- DROP = "DROP",
212
- }
222
+ export declare const RuleOrder: {
223
+ readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
224
+ readonly STRICT_ORDER: "STRICT_ORDER";
225
+ };
226
+ export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
227
+ export declare const StreamExceptionPolicy: {
228
+ readonly CONTINUE: "CONTINUE";
229
+ readonly DROP: "DROP";
230
+ };
231
+ export type StreamExceptionPolicy =
232
+ (typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
213
233
  export interface StatefulEngineOptions {
214
234
  RuleOrder?: RuleOrder | string;
215
235
  StreamExceptionPolicy?: StreamExceptionPolicy | string;
216
236
  }
217
- export declare enum OverrideAction {
218
- DROP_TO_ALERT = "DROP_TO_ALERT",
219
- }
237
+ export declare const OverrideAction: {
238
+ readonly DROP_TO_ALERT: "DROP_TO_ALERT";
239
+ };
240
+ export type OverrideAction =
241
+ (typeof OverrideAction)[keyof typeof OverrideAction];
220
242
  export interface StatefulRuleGroupOverride {
221
243
  Action?: OverrideAction | string;
222
244
  }
@@ -241,6 +263,7 @@ export interface FirewallPolicy {
241
263
  StatefulRuleGroupReferences?: StatefulRuleGroupReference[];
242
264
  StatefulDefaultActions?: string[];
243
265
  StatefulEngineOptions?: StatefulEngineOptions;
266
+ TLSInspectionConfigurationArn?: string;
244
267
  }
245
268
  export interface CreateFirewallPolicyRequest {
246
269
  FirewallPolicyName: string | undefined;
@@ -250,10 +273,12 @@ export interface CreateFirewallPolicyRequest {
250
273
  DryRun?: boolean;
251
274
  EncryptionConfiguration?: EncryptionConfiguration;
252
275
  }
253
- export declare enum ResourceStatus {
254
- ACTIVE = "ACTIVE",
255
- DELETING = "DELETING",
256
- }
276
+ export declare const ResourceStatus: {
277
+ readonly ACTIVE: "ACTIVE";
278
+ readonly DELETING: "DELETING";
279
+ };
280
+ export type ResourceStatus =
281
+ (typeof ResourceStatus)[keyof typeof ResourceStatus];
257
282
  export interface FirewallPolicyResponse {
258
283
  FirewallPolicyName: string | undefined;
259
284
  FirewallPolicyArn: string | undefined;
@@ -277,50 +302,59 @@ export interface IPSetReference {
277
302
  export interface ReferenceSets {
278
303
  IPSetReferences?: Record<string, IPSetReference>;
279
304
  }
280
- export declare enum GeneratedRulesType {
281
- ALLOWLIST = "ALLOWLIST",
282
- DENYLIST = "DENYLIST",
283
- }
284
- export declare enum TargetType {
285
- HTTP_HOST = "HTTP_HOST",
286
- TLS_SNI = "TLS_SNI",
287
- }
305
+ export declare const GeneratedRulesType: {
306
+ readonly ALLOWLIST: "ALLOWLIST";
307
+ readonly DENYLIST: "DENYLIST";
308
+ };
309
+ export type GeneratedRulesType =
310
+ (typeof GeneratedRulesType)[keyof typeof GeneratedRulesType];
311
+ export declare const TargetType: {
312
+ readonly HTTP_HOST: "HTTP_HOST";
313
+ readonly TLS_SNI: "TLS_SNI";
314
+ };
315
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
288
316
  export interface RulesSourceList {
289
317
  Targets: string[] | undefined;
290
318
  TargetTypes: (TargetType | string)[] | undefined;
291
319
  GeneratedRulesType: GeneratedRulesType | string | undefined;
292
320
  }
293
- export declare enum StatefulAction {
294
- ALERT = "ALERT",
295
- DROP = "DROP",
296
- PASS = "PASS",
297
- REJECT = "REJECT",
298
- }
299
- export declare enum StatefulRuleDirection {
300
- ANY = "ANY",
301
- FORWARD = "FORWARD",
302
- }
303
- export declare enum StatefulRuleProtocol {
304
- ANY = "IP",
305
- DCERPC = "DCERPC",
306
- DHCP = "DHCP",
307
- DNS = "DNS",
308
- FTP = "FTP",
309
- HTTP = "HTTP",
310
- ICMP = "ICMP",
311
- IKEV2 = "IKEV2",
312
- IMAP = "IMAP",
313
- KRB5 = "KRB5",
314
- MSN = "MSN",
315
- NTP = "NTP",
316
- SMB = "SMB",
317
- SMTP = "SMTP",
318
- SSH = "SSH",
319
- TCP = "TCP",
320
- TFTP = "TFTP",
321
- TLS = "TLS",
322
- UDP = "UDP",
323
- }
321
+ export declare const StatefulAction: {
322
+ readonly ALERT: "ALERT";
323
+ readonly DROP: "DROP";
324
+ readonly PASS: "PASS";
325
+ readonly REJECT: "REJECT";
326
+ };
327
+ export type StatefulAction =
328
+ (typeof StatefulAction)[keyof typeof StatefulAction];
329
+ export declare const StatefulRuleDirection: {
330
+ readonly ANY: "ANY";
331
+ readonly FORWARD: "FORWARD";
332
+ };
333
+ export type StatefulRuleDirection =
334
+ (typeof StatefulRuleDirection)[keyof typeof StatefulRuleDirection];
335
+ export declare const StatefulRuleProtocol: {
336
+ readonly ANY: "IP";
337
+ readonly DCERPC: "DCERPC";
338
+ readonly DHCP: "DHCP";
339
+ readonly DNS: "DNS";
340
+ readonly FTP: "FTP";
341
+ readonly HTTP: "HTTP";
342
+ readonly ICMP: "ICMP";
343
+ readonly IKEV2: "IKEV2";
344
+ readonly IMAP: "IMAP";
345
+ readonly KRB5: "KRB5";
346
+ readonly MSN: "MSN";
347
+ readonly NTP: "NTP";
348
+ readonly SMB: "SMB";
349
+ readonly SMTP: "SMTP";
350
+ readonly SSH: "SSH";
351
+ readonly TCP: "TCP";
352
+ readonly TFTP: "TFTP";
353
+ readonly TLS: "TLS";
354
+ readonly UDP: "UDP";
355
+ };
356
+ export type StatefulRuleProtocol =
357
+ (typeof StatefulRuleProtocol)[keyof typeof StatefulRuleProtocol];
324
358
  export interface Header {
325
359
  Protocol: StatefulRuleProtocol | string | undefined;
326
360
  Source: string | undefined;
@@ -342,16 +376,17 @@ export interface PortRange {
342
376
  FromPort: number | undefined;
343
377
  ToPort: number | undefined;
344
378
  }
345
- export declare enum TCPFlag {
346
- ACK = "ACK",
347
- CWR = "CWR",
348
- ECE = "ECE",
349
- FIN = "FIN",
350
- PSH = "PSH",
351
- RST = "RST",
352
- SYN = "SYN",
353
- URG = "URG",
354
- }
379
+ export declare const TCPFlag: {
380
+ readonly ACK: "ACK";
381
+ readonly CWR: "CWR";
382
+ readonly ECE: "ECE";
383
+ readonly FIN: "FIN";
384
+ readonly PSH: "PSH";
385
+ readonly RST: "RST";
386
+ readonly SYN: "SYN";
387
+ readonly URG: "URG";
388
+ };
389
+ export type TCPFlag = (typeof TCPFlag)[keyof typeof TCPFlag];
355
390
  export interface TCPFlagField {
356
391
  Flags: (TCPFlag | string)[] | undefined;
357
392
  Masks?: (TCPFlag | string)[];
@@ -405,10 +440,11 @@ export interface SourceMetadata {
405
440
  SourceArn?: string;
406
441
  SourceUpdateToken?: string;
407
442
  }
408
- export declare enum RuleGroupType {
409
- STATEFUL = "STATEFUL",
410
- STATELESS = "STATELESS",
411
- }
443
+ export declare const RuleGroupType: {
444
+ readonly STATEFUL: "STATEFUL";
445
+ readonly STATELESS: "STATELESS";
446
+ };
447
+ export type RuleGroupType = (typeof RuleGroupType)[keyof typeof RuleGroupType];
412
448
  export interface CreateRuleGroupRequest {
413
449
  RuleGroupName: string | undefined;
414
450
  RuleGroup?: RuleGroup;
@@ -441,6 +477,48 @@ export interface CreateRuleGroupResponse {
441
477
  UpdateToken: string | undefined;
442
478
  RuleGroupResponse: RuleGroupResponse | undefined;
443
479
  }
480
+ export interface ServerCertificateScope {
481
+ Sources?: Address[];
482
+ Destinations?: Address[];
483
+ SourcePorts?: PortRange[];
484
+ DestinationPorts?: PortRange[];
485
+ Protocols?: number[];
486
+ }
487
+ export interface ServerCertificate {
488
+ ResourceArn?: string;
489
+ }
490
+ export interface ServerCertificateConfiguration {
491
+ ServerCertificates?: ServerCertificate[];
492
+ Scopes?: ServerCertificateScope[];
493
+ }
494
+ export interface TLSInspectionConfiguration {
495
+ ServerCertificateConfigurations?: ServerCertificateConfiguration[];
496
+ }
497
+ export interface CreateTLSInspectionConfigurationRequest {
498
+ TLSInspectionConfigurationName: string | undefined;
499
+ TLSInspectionConfiguration: TLSInspectionConfiguration | undefined;
500
+ Description?: string;
501
+ Tags?: Tag[];
502
+ EncryptionConfiguration?: EncryptionConfiguration;
503
+ }
504
+ export interface TLSInspectionConfigurationResponse {
505
+ TLSInspectionConfigurationArn: string | undefined;
506
+ TLSInspectionConfigurationName: string | undefined;
507
+ TLSInspectionConfigurationId: string | undefined;
508
+ TLSInspectionConfigurationStatus?: ResourceStatus | string;
509
+ Description?: string;
510
+ Tags?: Tag[];
511
+ LastModifiedTime?: Date;
512
+ NumberOfAssociations?: number;
513
+ EncryptionConfiguration?: EncryptionConfiguration;
514
+ Certificates?: TlsCertificateData[];
515
+ }
516
+ export interface CreateTLSInspectionConfigurationResponse {
517
+ UpdateToken: string | undefined;
518
+ TLSInspectionConfigurationResponse:
519
+ | TLSInspectionConfigurationResponse
520
+ | undefined;
521
+ }
444
522
  export interface DeleteFirewallRequest {
445
523
  FirewallName?: string;
446
524
  FirewallArn?: string;
@@ -484,6 +562,15 @@ export interface DeleteRuleGroupRequest {
484
562
  export interface DeleteRuleGroupResponse {
485
563
  RuleGroupResponse: RuleGroupResponse | undefined;
486
564
  }
565
+ export interface DeleteTLSInspectionConfigurationRequest {
566
+ TLSInspectionConfigurationArn?: string;
567
+ TLSInspectionConfigurationName?: string;
568
+ }
569
+ export interface DeleteTLSInspectionConfigurationResponse {
570
+ TLSInspectionConfigurationResponse:
571
+ | TLSInspectionConfigurationResponse
572
+ | undefined;
573
+ }
487
574
  export interface DescribeFirewallRequest {
488
575
  FirewallName?: string;
489
576
  FirewallArn?: string;
@@ -506,15 +593,18 @@ export interface DescribeLoggingConfigurationRequest {
506
593
  FirewallArn?: string;
507
594
  FirewallName?: string;
508
595
  }
509
- export declare enum LogDestinationType {
510
- CLOUDWATCH_LOGS = "CloudWatchLogs",
511
- KINESIS_DATA_FIREHOSE = "KinesisDataFirehose",
512
- S3 = "S3",
513
- }
514
- export declare enum LogType {
515
- ALERT = "ALERT",
516
- FLOW = "FLOW",
517
- }
596
+ export declare const LogDestinationType: {
597
+ readonly CLOUDWATCH_LOGS: "CloudWatchLogs";
598
+ readonly KINESIS_DATA_FIREHOSE: "KinesisDataFirehose";
599
+ readonly S3: "S3";
600
+ };
601
+ export type LogDestinationType =
602
+ (typeof LogDestinationType)[keyof typeof LogDestinationType];
603
+ export declare const LogType: {
604
+ readonly ALERT: "ALERT";
605
+ readonly FLOW: "FLOW";
606
+ };
607
+ export type LogType = (typeof LogType)[keyof typeof LogType];
518
608
  export interface LogDestinationConfig {
519
609
  LogType: LogType | string | undefined;
520
610
  LogDestinationType: LogDestinationType | string | undefined;
@@ -557,6 +647,17 @@ export interface DescribeRuleGroupMetadataResponse {
557
647
  StatefulRuleOptions?: StatefulRuleOptions;
558
648
  LastModifiedTime?: Date;
559
649
  }
650
+ export interface DescribeTLSInspectionConfigurationRequest {
651
+ TLSInspectionConfigurationArn?: string;
652
+ TLSInspectionConfigurationName?: string;
653
+ }
654
+ export interface DescribeTLSInspectionConfigurationResponse {
655
+ UpdateToken: string | undefined;
656
+ TLSInspectionConfiguration?: TLSInspectionConfiguration;
657
+ TLSInspectionConfigurationResponse:
658
+ | TLSInspectionConfigurationResponse
659
+ | undefined;
660
+ }
560
661
  export interface DisassociateSubnetsRequest {
561
662
  UpdateToken?: string;
562
663
  FirewallArn?: string;
@@ -594,14 +695,18 @@ export interface ListFirewallsResponse {
594
695
  NextToken?: string;
595
696
  Firewalls?: FirewallMetadata[];
596
697
  }
597
- export declare enum ResourceManagedType {
598
- AWS_MANAGED_DOMAIN_LISTS = "AWS_MANAGED_DOMAIN_LISTS",
599
- AWS_MANAGED_THREAT_SIGNATURES = "AWS_MANAGED_THREAT_SIGNATURES",
600
- }
601
- export declare enum ResourceManagedStatus {
602
- ACCOUNT = "ACCOUNT",
603
- MANAGED = "MANAGED",
604
- }
698
+ export declare const ResourceManagedType: {
699
+ readonly AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS";
700
+ readonly AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES";
701
+ };
702
+ export type ResourceManagedType =
703
+ (typeof ResourceManagedType)[keyof typeof ResourceManagedType];
704
+ export declare const ResourceManagedStatus: {
705
+ readonly ACCOUNT: "ACCOUNT";
706
+ readonly MANAGED: "MANAGED";
707
+ };
708
+ export type ResourceManagedStatus =
709
+ (typeof ResourceManagedStatus)[keyof typeof ResourceManagedStatus];
605
710
  export interface ListRuleGroupsRequest {
606
711
  NextToken?: string;
607
712
  MaxResults?: number;
@@ -626,6 +731,18 @@ export interface ListTagsForResourceResponse {
626
731
  NextToken?: string;
627
732
  Tags?: Tag[];
628
733
  }
734
+ export interface ListTLSInspectionConfigurationsRequest {
735
+ NextToken?: string;
736
+ MaxResults?: number;
737
+ }
738
+ export interface TLSInspectionConfigurationMetadata {
739
+ Name?: string;
740
+ Arn?: string;
741
+ }
742
+ export interface ListTLSInspectionConfigurationsResponse {
743
+ NextToken?: string;
744
+ TLSInspectionConfigurations?: TLSInspectionConfigurationMetadata[];
745
+ }
629
746
  export declare class LogDestinationPermissionException extends __BaseException {
630
747
  readonly name: "LogDestinationPermissionException";
631
748
  readonly $fault: "client";
@@ -759,3 +876,17 @@ export interface UpdateSubnetChangeProtectionResponse {
759
876
  FirewallName?: string;
760
877
  SubnetChangeProtection?: boolean;
761
878
  }
879
+ export interface UpdateTLSInspectionConfigurationRequest {
880
+ TLSInspectionConfigurationArn?: string;
881
+ TLSInspectionConfigurationName?: string;
882
+ TLSInspectionConfiguration: TLSInspectionConfiguration | undefined;
883
+ Description?: string;
884
+ EncryptionConfiguration?: EncryptionConfiguration;
885
+ UpdateToken: string | undefined;
886
+ }
887
+ export interface UpdateTLSInspectionConfigurationResponse {
888
+ UpdateToken: string | undefined;
889
+ TLSInspectionConfigurationResponse:
890
+ | TLSInspectionConfigurationResponse
891
+ | undefined;
892
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTLSInspectionConfigurationsCommandInput,
4
+ ListTLSInspectionConfigurationsCommandOutput,
5
+ } from "../commands/ListTLSInspectionConfigurationsCommand";
6
+ import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTLSInspectionConfigurations(
8
+ config: NetworkFirewallPaginationConfiguration,
9
+ input: ListTLSInspectionConfigurationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTLSInspectionConfigurationsCommandOutput>;
@@ -2,4 +2,5 @@ export * from "./Interfaces";
2
2
  export * from "./ListFirewallPoliciesPaginator";
3
3
  export * from "./ListFirewallsPaginator";
4
4
  export * from "./ListRuleGroupsPaginator";
5
+ export * from "./ListTLSInspectionConfigurationsPaginator";
5
6
  export * from "./ListTagsForResourcePaginator";
@@ -23,6 +23,10 @@ import {
23
23
  CreateRuleGroupCommandInput,
24
24
  CreateRuleGroupCommandOutput,
25
25
  } from "../commands/CreateRuleGroupCommand";
26
+ import {
27
+ CreateTLSInspectionConfigurationCommandInput,
28
+ CreateTLSInspectionConfigurationCommandOutput,
29
+ } from "../commands/CreateTLSInspectionConfigurationCommand";
26
30
  import {
27
31
  DeleteFirewallCommandInput,
28
32
  DeleteFirewallCommandOutput,
@@ -39,6 +43,10 @@ import {
39
43
  DeleteRuleGroupCommandInput,
40
44
  DeleteRuleGroupCommandOutput,
41
45
  } from "../commands/DeleteRuleGroupCommand";
46
+ import {
47
+ DeleteTLSInspectionConfigurationCommandInput,
48
+ DeleteTLSInspectionConfigurationCommandOutput,
49
+ } from "../commands/DeleteTLSInspectionConfigurationCommand";
42
50
  import {
43
51
  DescribeFirewallCommandInput,
44
52
  DescribeFirewallCommandOutput,
@@ -63,6 +71,10 @@ import {
63
71
  DescribeRuleGroupMetadataCommandInput,
64
72
  DescribeRuleGroupMetadataCommandOutput,
65
73
  } from "../commands/DescribeRuleGroupMetadataCommand";
74
+ import {
75
+ DescribeTLSInspectionConfigurationCommandInput,
76
+ DescribeTLSInspectionConfigurationCommandOutput,
77
+ } from "../commands/DescribeTLSInspectionConfigurationCommand";
66
78
  import {
67
79
  DisassociateSubnetsCommandInput,
68
80
  DisassociateSubnetsCommandOutput,
@@ -83,6 +95,10 @@ import {
83
95
  ListTagsForResourceCommandInput,
84
96
  ListTagsForResourceCommandOutput,
85
97
  } from "../commands/ListTagsForResourceCommand";
98
+ import {
99
+ ListTLSInspectionConfigurationsCommandInput,
100
+ ListTLSInspectionConfigurationsCommandOutput,
101
+ } from "../commands/ListTLSInspectionConfigurationsCommand";
86
102
  import {
87
103
  PutResourcePolicyCommandInput,
88
104
  PutResourcePolicyCommandOutput,
@@ -127,6 +143,10 @@ import {
127
143
  UpdateSubnetChangeProtectionCommandInput,
128
144
  UpdateSubnetChangeProtectionCommandOutput,
129
145
  } from "../commands/UpdateSubnetChangeProtectionCommand";
146
+ import {
147
+ UpdateTLSInspectionConfigurationCommandInput,
148
+ UpdateTLSInspectionConfigurationCommandOutput,
149
+ } from "../commands/UpdateTLSInspectionConfigurationCommand";
130
150
  export declare const serializeAws_json1_0AssociateFirewallPolicyCommand: (
131
151
  input: AssociateFirewallPolicyCommandInput,
132
152
  context: __SerdeContext
@@ -147,6 +167,10 @@ export declare const serializeAws_json1_0CreateRuleGroupCommand: (
147
167
  input: CreateRuleGroupCommandInput,
148
168
  context: __SerdeContext
149
169
  ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_json1_0CreateTLSInspectionConfigurationCommand: (
171
+ input: CreateTLSInspectionConfigurationCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
150
174
  export declare const serializeAws_json1_0DeleteFirewallCommand: (
151
175
  input: DeleteFirewallCommandInput,
152
176
  context: __SerdeContext
@@ -163,6 +187,10 @@ export declare const serializeAws_json1_0DeleteRuleGroupCommand: (
163
187
  input: DeleteRuleGroupCommandInput,
164
188
  context: __SerdeContext
165
189
  ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_json1_0DeleteTLSInspectionConfigurationCommand: (
191
+ input: DeleteTLSInspectionConfigurationCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
166
194
  export declare const serializeAws_json1_0DescribeFirewallCommand: (
167
195
  input: DescribeFirewallCommandInput,
168
196
  context: __SerdeContext
@@ -187,6 +215,10 @@ export declare const serializeAws_json1_0DescribeRuleGroupMetadataCommand: (
187
215
  input: DescribeRuleGroupMetadataCommandInput,
188
216
  context: __SerdeContext
189
217
  ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_json1_0DescribeTLSInspectionConfigurationCommand: (
219
+ input: DescribeTLSInspectionConfigurationCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
190
222
  export declare const serializeAws_json1_0DisassociateSubnetsCommand: (
191
223
  input: DisassociateSubnetsCommandInput,
192
224
  context: __SerdeContext
@@ -207,6 +239,10 @@ export declare const serializeAws_json1_0ListTagsForResourceCommand: (
207
239
  input: ListTagsForResourceCommandInput,
208
240
  context: __SerdeContext
209
241
  ) => Promise<__HttpRequest>;
242
+ export declare const serializeAws_json1_0ListTLSInspectionConfigurationsCommand: (
243
+ input: ListTLSInspectionConfigurationsCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
210
246
  export declare const serializeAws_json1_0PutResourcePolicyCommand: (
211
247
  input: PutResourcePolicyCommandInput,
212
248
  context: __SerdeContext
@@ -251,6 +287,10 @@ export declare const serializeAws_json1_0UpdateSubnetChangeProtectionCommand: (
251
287
  input: UpdateSubnetChangeProtectionCommandInput,
252
288
  context: __SerdeContext
253
289
  ) => Promise<__HttpRequest>;
290
+ export declare const serializeAws_json1_0UpdateTLSInspectionConfigurationCommand: (
291
+ input: UpdateTLSInspectionConfigurationCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
254
294
  export declare const deserializeAws_json1_0AssociateFirewallPolicyCommand: (
255
295
  output: __HttpResponse,
256
296
  context: __SerdeContext
@@ -271,6 +311,10 @@ export declare const deserializeAws_json1_0CreateRuleGroupCommand: (
271
311
  output: __HttpResponse,
272
312
  context: __SerdeContext
273
313
  ) => Promise<CreateRuleGroupCommandOutput>;
314
+ export declare const deserializeAws_json1_0CreateTLSInspectionConfigurationCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<CreateTLSInspectionConfigurationCommandOutput>;
274
318
  export declare const deserializeAws_json1_0DeleteFirewallCommand: (
275
319
  output: __HttpResponse,
276
320
  context: __SerdeContext
@@ -287,6 +331,10 @@ export declare const deserializeAws_json1_0DeleteRuleGroupCommand: (
287
331
  output: __HttpResponse,
288
332
  context: __SerdeContext
289
333
  ) => Promise<DeleteRuleGroupCommandOutput>;
334
+ export declare const deserializeAws_json1_0DeleteTLSInspectionConfigurationCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<DeleteTLSInspectionConfigurationCommandOutput>;
290
338
  export declare const deserializeAws_json1_0DescribeFirewallCommand: (
291
339
  output: __HttpResponse,
292
340
  context: __SerdeContext
@@ -311,6 +359,10 @@ export declare const deserializeAws_json1_0DescribeRuleGroupMetadataCommand: (
311
359
  output: __HttpResponse,
312
360
  context: __SerdeContext
313
361
  ) => Promise<DescribeRuleGroupMetadataCommandOutput>;
362
+ export declare const deserializeAws_json1_0DescribeTLSInspectionConfigurationCommand: (
363
+ output: __HttpResponse,
364
+ context: __SerdeContext
365
+ ) => Promise<DescribeTLSInspectionConfigurationCommandOutput>;
314
366
  export declare const deserializeAws_json1_0DisassociateSubnetsCommand: (
315
367
  output: __HttpResponse,
316
368
  context: __SerdeContext
@@ -331,6 +383,10 @@ export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
331
383
  output: __HttpResponse,
332
384
  context: __SerdeContext
333
385
  ) => Promise<ListTagsForResourceCommandOutput>;
386
+ export declare const deserializeAws_json1_0ListTLSInspectionConfigurationsCommand: (
387
+ output: __HttpResponse,
388
+ context: __SerdeContext
389
+ ) => Promise<ListTLSInspectionConfigurationsCommandOutput>;
334
390
  export declare const deserializeAws_json1_0PutResourcePolicyCommand: (
335
391
  output: __HttpResponse,
336
392
  context: __SerdeContext
@@ -375,3 +431,7 @@ export declare const deserializeAws_json1_0UpdateSubnetChangeProtectionCommand:
375
431
  output: __HttpResponse,
376
432
  context: __SerdeContext
377
433
  ) => Promise<UpdateSubnetChangeProtectionCommandOutput>;
434
+ export declare const deserializeAws_json1_0UpdateTLSInspectionConfigurationCommand: (
435
+ output: __HttpResponse,
436
+ context: __SerdeContext
437
+ ) => Promise<UpdateTLSInspectionConfigurationCommandOutput>;