@aws-sdk/client-network-firewall 3.750.0 → 3.752.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/README.md +36 -1
- package/dist-cjs/index.js +213 -0
- package/dist-es/NetworkFirewall.js +8 -0
- package/dist-es/commands/GetAnalysisReportResultsCommand.js +22 -0
- package/dist-es/commands/ListAnalysisReportsCommand.js +22 -0
- package/dist-es/commands/StartAnalysisReportCommand.js +22 -0
- package/dist-es/commands/UpdateFirewallAnalysisSettingsCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/pagination/GetAnalysisReportResultsPaginator.js +4 -0
- package/dist-es/pagination/ListAnalysisReportsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_0.js +127 -0
- package/dist-types/NetworkFirewall.d.ts +34 -1
- package/dist-types/NetworkFirewallClient.d.ts +10 -3
- package/dist-types/commands/CreateFirewallCommand.d.ts +9 -2
- package/dist-types/commands/DeleteFirewallCommand.d.ts +3 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +3 -0
- package/dist-types/commands/GetAnalysisReportResultsCommand.d.ts +121 -0
- package/dist-types/commands/ListAnalysisReportsCommand.d.ts +108 -0
- package/dist-types/commands/StartAnalysisReportCommand.d.ts +100 -0
- package/dist-types/commands/UpdateFirewallAnalysisSettingsCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +335 -6
- package/dist-types/pagination/GetAnalysisReportResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAnalysisReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +36 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +70 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetAnalysisReportResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAnalysisReportsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartAnalysisReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFirewallAnalysisSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +76 -2
- package/dist-types/ts3.4/pagination/GetAnalysisReportResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAnalysisReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +48 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetAnalysisReportResultsCommandInput, GetAnalysisReportResultsCommandOutput } from "../commands/GetAnalysisReportResultsCommand";
|
|
3
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateGetAnalysisReportResults: (config: NetworkFirewallPaginationConfiguration, input: GetAnalysisReportResultsCommandInput, ...rest: any[]) => Paginator<GetAnalysisReportResultsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAnalysisReportsCommandInput, ListAnalysisReportsCommandOutput } from "../commands/ListAnalysisReportsCommand";
|
|
3
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAnalysisReports: (config: NetworkFirewallPaginationConfiguration, input: ListAnalysisReportsCommandInput, ...rest: any[]) => Paginator<ListAnalysisReportsCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export * from "./GetAnalysisReportResultsPaginator";
|
|
1
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListAnalysisReportsPaginator";
|
|
2
4
|
export * from "./ListFirewallPoliciesPaginator";
|
|
3
5
|
export * from "./ListFirewallsPaginator";
|
|
4
6
|
export * from "./ListRuleGroupsPaginator";
|
|
@@ -19,14 +19,18 @@ import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from ".
|
|
|
19
19
|
import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "../commands/DescribeRuleGroupMetadataCommand";
|
|
20
20
|
import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "../commands/DescribeTLSInspectionConfigurationCommand";
|
|
21
21
|
import { DisassociateSubnetsCommandInput, DisassociateSubnetsCommandOutput } from "../commands/DisassociateSubnetsCommand";
|
|
22
|
+
import { GetAnalysisReportResultsCommandInput, GetAnalysisReportResultsCommandOutput } from "../commands/GetAnalysisReportResultsCommand";
|
|
23
|
+
import { ListAnalysisReportsCommandInput, ListAnalysisReportsCommandOutput } from "../commands/ListAnalysisReportsCommand";
|
|
22
24
|
import { ListFirewallPoliciesCommandInput, ListFirewallPoliciesCommandOutput } from "../commands/ListFirewallPoliciesCommand";
|
|
23
25
|
import { ListFirewallsCommandInput, ListFirewallsCommandOutput } from "../commands/ListFirewallsCommand";
|
|
24
26
|
import { ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput } from "../commands/ListRuleGroupsCommand";
|
|
25
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
26
28
|
import { ListTLSInspectionConfigurationsCommandInput, ListTLSInspectionConfigurationsCommandOutput } from "../commands/ListTLSInspectionConfigurationsCommand";
|
|
27
29
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
30
|
+
import { StartAnalysisReportCommandInput, StartAnalysisReportCommandOutput } from "../commands/StartAnalysisReportCommand";
|
|
28
31
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
29
32
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
33
|
+
import { UpdateFirewallAnalysisSettingsCommandInput, UpdateFirewallAnalysisSettingsCommandOutput } from "../commands/UpdateFirewallAnalysisSettingsCommand";
|
|
30
34
|
import { UpdateFirewallDeleteProtectionCommandInput, UpdateFirewallDeleteProtectionCommandOutput } from "../commands/UpdateFirewallDeleteProtectionCommand";
|
|
31
35
|
import { UpdateFirewallDescriptionCommandInput, UpdateFirewallDescriptionCommandOutput } from "../commands/UpdateFirewallDescriptionCommand";
|
|
32
36
|
import { UpdateFirewallEncryptionConfigurationCommandInput, UpdateFirewallEncryptionConfigurationCommandOutput } from "../commands/UpdateFirewallEncryptionConfigurationCommand";
|
|
@@ -112,6 +116,14 @@ export declare const se_DescribeTLSInspectionConfigurationCommand: (input: Descr
|
|
|
112
116
|
* serializeAws_json1_0DisassociateSubnetsCommand
|
|
113
117
|
*/
|
|
114
118
|
export declare const se_DisassociateSubnetsCommand: (input: DisassociateSubnetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
/**
|
|
120
|
+
* serializeAws_json1_0GetAnalysisReportResultsCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const se_GetAnalysisReportResultsCommand: (input: GetAnalysisReportResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
/**
|
|
124
|
+
* serializeAws_json1_0ListAnalysisReportsCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const se_ListAnalysisReportsCommand: (input: ListAnalysisReportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
127
|
/**
|
|
116
128
|
* serializeAws_json1_0ListFirewallPoliciesCommand
|
|
117
129
|
*/
|
|
@@ -136,6 +148,10 @@ export declare const se_ListTLSInspectionConfigurationsCommand: (input: ListTLSI
|
|
|
136
148
|
* serializeAws_json1_0PutResourcePolicyCommand
|
|
137
149
|
*/
|
|
138
150
|
export declare const se_PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
|
+
/**
|
|
152
|
+
* serializeAws_json1_0StartAnalysisReportCommand
|
|
153
|
+
*/
|
|
154
|
+
export declare const se_StartAnalysisReportCommand: (input: StartAnalysisReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
155
|
/**
|
|
140
156
|
* serializeAws_json1_0TagResourceCommand
|
|
141
157
|
*/
|
|
@@ -144,6 +160,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
144
160
|
* serializeAws_json1_0UntagResourceCommand
|
|
145
161
|
*/
|
|
146
162
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
163
|
+
/**
|
|
164
|
+
* serializeAws_json1_0UpdateFirewallAnalysisSettingsCommand
|
|
165
|
+
*/
|
|
166
|
+
export declare const se_UpdateFirewallAnalysisSettingsCommand: (input: UpdateFirewallAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
167
|
/**
|
|
148
168
|
* serializeAws_json1_0UpdateFirewallDeleteProtectionCommand
|
|
149
169
|
*/
|
|
@@ -256,6 +276,14 @@ export declare const de_DescribeTLSInspectionConfigurationCommand: (output: __Ht
|
|
|
256
276
|
* deserializeAws_json1_0DisassociateSubnetsCommand
|
|
257
277
|
*/
|
|
258
278
|
export declare const de_DisassociateSubnetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateSubnetsCommandOutput>;
|
|
279
|
+
/**
|
|
280
|
+
* deserializeAws_json1_0GetAnalysisReportResultsCommand
|
|
281
|
+
*/
|
|
282
|
+
export declare const de_GetAnalysisReportResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnalysisReportResultsCommandOutput>;
|
|
283
|
+
/**
|
|
284
|
+
* deserializeAws_json1_0ListAnalysisReportsCommand
|
|
285
|
+
*/
|
|
286
|
+
export declare const de_ListAnalysisReportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnalysisReportsCommandOutput>;
|
|
259
287
|
/**
|
|
260
288
|
* deserializeAws_json1_0ListFirewallPoliciesCommand
|
|
261
289
|
*/
|
|
@@ -280,6 +308,10 @@ export declare const de_ListTLSInspectionConfigurationsCommand: (output: __HttpR
|
|
|
280
308
|
* deserializeAws_json1_0PutResourcePolicyCommand
|
|
281
309
|
*/
|
|
282
310
|
export declare const de_PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
311
|
+
/**
|
|
312
|
+
* deserializeAws_json1_0StartAnalysisReportCommand
|
|
313
|
+
*/
|
|
314
|
+
export declare const de_StartAnalysisReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAnalysisReportCommandOutput>;
|
|
283
315
|
/**
|
|
284
316
|
* deserializeAws_json1_0TagResourceCommand
|
|
285
317
|
*/
|
|
@@ -288,6 +320,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
288
320
|
* deserializeAws_json1_0UntagResourceCommand
|
|
289
321
|
*/
|
|
290
322
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
323
|
+
/**
|
|
324
|
+
* deserializeAws_json1_0UpdateFirewallAnalysisSettingsCommand
|
|
325
|
+
*/
|
|
326
|
+
export declare const de_UpdateFirewallAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFirewallAnalysisSettingsCommandOutput>;
|
|
291
327
|
/**
|
|
292
328
|
* deserializeAws_json1_0UpdateFirewallDeleteProtectionCommand
|
|
293
329
|
*/
|
|
@@ -75,6 +75,14 @@ import {
|
|
|
75
75
|
DisassociateSubnetsCommandInput,
|
|
76
76
|
DisassociateSubnetsCommandOutput,
|
|
77
77
|
} from "./commands/DisassociateSubnetsCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetAnalysisReportResultsCommandInput,
|
|
80
|
+
GetAnalysisReportResultsCommandOutput,
|
|
81
|
+
} from "./commands/GetAnalysisReportResultsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListAnalysisReportsCommandInput,
|
|
84
|
+
ListAnalysisReportsCommandOutput,
|
|
85
|
+
} from "./commands/ListAnalysisReportsCommand";
|
|
78
86
|
import {
|
|
79
87
|
ListFirewallPoliciesCommandInput,
|
|
80
88
|
ListFirewallPoliciesCommandOutput,
|
|
@@ -99,6 +107,10 @@ import {
|
|
|
99
107
|
PutResourcePolicyCommandInput,
|
|
100
108
|
PutResourcePolicyCommandOutput,
|
|
101
109
|
} from "./commands/PutResourcePolicyCommand";
|
|
110
|
+
import {
|
|
111
|
+
StartAnalysisReportCommandInput,
|
|
112
|
+
StartAnalysisReportCommandOutput,
|
|
113
|
+
} from "./commands/StartAnalysisReportCommand";
|
|
102
114
|
import {
|
|
103
115
|
TagResourceCommandInput,
|
|
104
116
|
TagResourceCommandOutput,
|
|
@@ -107,6 +119,10 @@ import {
|
|
|
107
119
|
UntagResourceCommandInput,
|
|
108
120
|
UntagResourceCommandOutput,
|
|
109
121
|
} from "./commands/UntagResourceCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateFirewallAnalysisSettingsCommandInput,
|
|
124
|
+
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
125
|
+
} from "./commands/UpdateFirewallAnalysisSettingsCommand";
|
|
110
126
|
import {
|
|
111
127
|
UpdateFirewallDeleteProtectionCommandInput,
|
|
112
128
|
UpdateFirewallDeleteProtectionCommandOutput,
|
|
@@ -408,6 +424,33 @@ export interface NetworkFirewall {
|
|
|
408
424
|
options: __HttpHandlerOptions,
|
|
409
425
|
cb: (err: any, data?: DisassociateSubnetsCommandOutput) => void
|
|
410
426
|
): void;
|
|
427
|
+
getAnalysisReportResults(
|
|
428
|
+
args: GetAnalysisReportResultsCommandInput,
|
|
429
|
+
options?: __HttpHandlerOptions
|
|
430
|
+
): Promise<GetAnalysisReportResultsCommandOutput>;
|
|
431
|
+
getAnalysisReportResults(
|
|
432
|
+
args: GetAnalysisReportResultsCommandInput,
|
|
433
|
+
cb: (err: any, data?: GetAnalysisReportResultsCommandOutput) => void
|
|
434
|
+
): void;
|
|
435
|
+
getAnalysisReportResults(
|
|
436
|
+
args: GetAnalysisReportResultsCommandInput,
|
|
437
|
+
options: __HttpHandlerOptions,
|
|
438
|
+
cb: (err: any, data?: GetAnalysisReportResultsCommandOutput) => void
|
|
439
|
+
): void;
|
|
440
|
+
listAnalysisReports(): Promise<ListAnalysisReportsCommandOutput>;
|
|
441
|
+
listAnalysisReports(
|
|
442
|
+
args: ListAnalysisReportsCommandInput,
|
|
443
|
+
options?: __HttpHandlerOptions
|
|
444
|
+
): Promise<ListAnalysisReportsCommandOutput>;
|
|
445
|
+
listAnalysisReports(
|
|
446
|
+
args: ListAnalysisReportsCommandInput,
|
|
447
|
+
cb: (err: any, data?: ListAnalysisReportsCommandOutput) => void
|
|
448
|
+
): void;
|
|
449
|
+
listAnalysisReports(
|
|
450
|
+
args: ListAnalysisReportsCommandInput,
|
|
451
|
+
options: __HttpHandlerOptions,
|
|
452
|
+
cb: (err: any, data?: ListAnalysisReportsCommandOutput) => void
|
|
453
|
+
): void;
|
|
411
454
|
listFirewallPolicies(): Promise<ListFirewallPoliciesCommandOutput>;
|
|
412
455
|
listFirewallPolicies(
|
|
413
456
|
args: ListFirewallPoliciesCommandInput,
|
|
@@ -490,6 +533,19 @@ export interface NetworkFirewall {
|
|
|
490
533
|
options: __HttpHandlerOptions,
|
|
491
534
|
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
492
535
|
): void;
|
|
536
|
+
startAnalysisReport(
|
|
537
|
+
args: StartAnalysisReportCommandInput,
|
|
538
|
+
options?: __HttpHandlerOptions
|
|
539
|
+
): Promise<StartAnalysisReportCommandOutput>;
|
|
540
|
+
startAnalysisReport(
|
|
541
|
+
args: StartAnalysisReportCommandInput,
|
|
542
|
+
cb: (err: any, data?: StartAnalysisReportCommandOutput) => void
|
|
543
|
+
): void;
|
|
544
|
+
startAnalysisReport(
|
|
545
|
+
args: StartAnalysisReportCommandInput,
|
|
546
|
+
options: __HttpHandlerOptions,
|
|
547
|
+
cb: (err: any, data?: StartAnalysisReportCommandOutput) => void
|
|
548
|
+
): void;
|
|
493
549
|
tagResource(
|
|
494
550
|
args: TagResourceCommandInput,
|
|
495
551
|
options?: __HttpHandlerOptions
|
|
@@ -516,6 +572,20 @@ export interface NetworkFirewall {
|
|
|
516
572
|
options: __HttpHandlerOptions,
|
|
517
573
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
518
574
|
): void;
|
|
575
|
+
updateFirewallAnalysisSettings(): Promise<UpdateFirewallAnalysisSettingsCommandOutput>;
|
|
576
|
+
updateFirewallAnalysisSettings(
|
|
577
|
+
args: UpdateFirewallAnalysisSettingsCommandInput,
|
|
578
|
+
options?: __HttpHandlerOptions
|
|
579
|
+
): Promise<UpdateFirewallAnalysisSettingsCommandOutput>;
|
|
580
|
+
updateFirewallAnalysisSettings(
|
|
581
|
+
args: UpdateFirewallAnalysisSettingsCommandInput,
|
|
582
|
+
cb: (err: any, data?: UpdateFirewallAnalysisSettingsCommandOutput) => void
|
|
583
|
+
): void;
|
|
584
|
+
updateFirewallAnalysisSettings(
|
|
585
|
+
args: UpdateFirewallAnalysisSettingsCommandInput,
|
|
586
|
+
options: __HttpHandlerOptions,
|
|
587
|
+
cb: (err: any, data?: UpdateFirewallAnalysisSettingsCommandOutput) => void
|
|
588
|
+
): void;
|
|
519
589
|
updateFirewallDeleteProtection(
|
|
520
590
|
args: UpdateFirewallDeleteProtectionCommandInput,
|
|
521
591
|
options?: __HttpHandlerOptions
|
|
@@ -121,6 +121,14 @@ import {
|
|
|
121
121
|
DisassociateSubnetsCommandInput,
|
|
122
122
|
DisassociateSubnetsCommandOutput,
|
|
123
123
|
} from "./commands/DisassociateSubnetsCommand";
|
|
124
|
+
import {
|
|
125
|
+
GetAnalysisReportResultsCommandInput,
|
|
126
|
+
GetAnalysisReportResultsCommandOutput,
|
|
127
|
+
} from "./commands/GetAnalysisReportResultsCommand";
|
|
128
|
+
import {
|
|
129
|
+
ListAnalysisReportsCommandInput,
|
|
130
|
+
ListAnalysisReportsCommandOutput,
|
|
131
|
+
} from "./commands/ListAnalysisReportsCommand";
|
|
124
132
|
import {
|
|
125
133
|
ListFirewallPoliciesCommandInput,
|
|
126
134
|
ListFirewallPoliciesCommandOutput,
|
|
@@ -145,6 +153,10 @@ import {
|
|
|
145
153
|
PutResourcePolicyCommandInput,
|
|
146
154
|
PutResourcePolicyCommandOutput,
|
|
147
155
|
} from "./commands/PutResourcePolicyCommand";
|
|
156
|
+
import {
|
|
157
|
+
StartAnalysisReportCommandInput,
|
|
158
|
+
StartAnalysisReportCommandOutput,
|
|
159
|
+
} from "./commands/StartAnalysisReportCommand";
|
|
148
160
|
import {
|
|
149
161
|
TagResourceCommandInput,
|
|
150
162
|
TagResourceCommandOutput,
|
|
@@ -153,6 +165,10 @@ import {
|
|
|
153
165
|
UntagResourceCommandInput,
|
|
154
166
|
UntagResourceCommandOutput,
|
|
155
167
|
} from "./commands/UntagResourceCommand";
|
|
168
|
+
import {
|
|
169
|
+
UpdateFirewallAnalysisSettingsCommandInput,
|
|
170
|
+
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
171
|
+
} from "./commands/UpdateFirewallAnalysisSettingsCommand";
|
|
156
172
|
import {
|
|
157
173
|
UpdateFirewallDeleteProtectionCommandInput,
|
|
158
174
|
UpdateFirewallDeleteProtectionCommandOutput,
|
|
@@ -216,14 +232,18 @@ export type ServiceInputTypes =
|
|
|
216
232
|
| DescribeRuleGroupMetadataCommandInput
|
|
217
233
|
| DescribeTLSInspectionConfigurationCommandInput
|
|
218
234
|
| DisassociateSubnetsCommandInput
|
|
235
|
+
| GetAnalysisReportResultsCommandInput
|
|
236
|
+
| ListAnalysisReportsCommandInput
|
|
219
237
|
| ListFirewallPoliciesCommandInput
|
|
220
238
|
| ListFirewallsCommandInput
|
|
221
239
|
| ListRuleGroupsCommandInput
|
|
222
240
|
| ListTLSInspectionConfigurationsCommandInput
|
|
223
241
|
| ListTagsForResourceCommandInput
|
|
224
242
|
| PutResourcePolicyCommandInput
|
|
243
|
+
| StartAnalysisReportCommandInput
|
|
225
244
|
| TagResourceCommandInput
|
|
226
245
|
| UntagResourceCommandInput
|
|
246
|
+
| UpdateFirewallAnalysisSettingsCommandInput
|
|
227
247
|
| UpdateFirewallDeleteProtectionCommandInput
|
|
228
248
|
| UpdateFirewallDescriptionCommandInput
|
|
229
249
|
| UpdateFirewallEncryptionConfigurationCommandInput
|
|
@@ -253,14 +273,18 @@ export type ServiceOutputTypes =
|
|
|
253
273
|
| DescribeRuleGroupMetadataCommandOutput
|
|
254
274
|
| DescribeTLSInspectionConfigurationCommandOutput
|
|
255
275
|
| DisassociateSubnetsCommandOutput
|
|
276
|
+
| GetAnalysisReportResultsCommandOutput
|
|
277
|
+
| ListAnalysisReportsCommandOutput
|
|
256
278
|
| ListFirewallPoliciesCommandOutput
|
|
257
279
|
| ListFirewallsCommandOutput
|
|
258
280
|
| ListRuleGroupsCommandOutput
|
|
259
281
|
| ListTLSInspectionConfigurationsCommandOutput
|
|
260
282
|
| ListTagsForResourceCommandOutput
|
|
261
283
|
| PutResourcePolicyCommandOutput
|
|
284
|
+
| StartAnalysisReportCommandOutput
|
|
262
285
|
| TagResourceCommandOutput
|
|
263
286
|
| UntagResourceCommandOutput
|
|
287
|
+
| UpdateFirewallAnalysisSettingsCommandOutput
|
|
264
288
|
| UpdateFirewallDeleteProtectionCommandOutput
|
|
265
289
|
| UpdateFirewallDescriptionCommandOutput
|
|
266
290
|
| UpdateFirewallEncryptionConfigurationCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetAnalysisReportResultsRequest,
|
|
5
|
+
GetAnalysisReportResultsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetAnalysisReportResultsCommandInput
|
|
15
|
+
extends GetAnalysisReportResultsRequest {}
|
|
16
|
+
export interface GetAnalysisReportResultsCommandOutput
|
|
17
|
+
extends GetAnalysisReportResultsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetAnalysisReportResultsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetAnalysisReportResultsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetAnalysisReportResultsCommandInput,
|
|
24
|
+
GetAnalysisReportResultsCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetAnalysisReportResultsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetAnalysisReportResultsCommandInput,
|
|
33
|
+
GetAnalysisReportResultsCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetAnalysisReportResultsCommand extends GetAnalysisReportResultsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetAnalysisReportResultsRequest;
|
|
44
|
+
output: GetAnalysisReportResultsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetAnalysisReportResultsCommandInput;
|
|
48
|
+
output: GetAnalysisReportResultsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListAnalysisReportsRequest,
|
|
5
|
+
ListAnalysisReportsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAnalysisReportsCommandInput
|
|
15
|
+
extends ListAnalysisReportsRequest {}
|
|
16
|
+
export interface ListAnalysisReportsCommandOutput
|
|
17
|
+
extends ListAnalysisReportsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAnalysisReportsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAnalysisReportsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAnalysisReportsCommandInput,
|
|
24
|
+
ListAnalysisReportsCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListAnalysisReportsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAnalysisReportsCommandInput,
|
|
33
|
+
ListAnalysisReportsCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAnalysisReportsCommand extends ListAnalysisReportsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAnalysisReportsRequest;
|
|
44
|
+
output: ListAnalysisReportsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAnalysisReportsCommandInput;
|
|
48
|
+
output: ListAnalysisReportsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
StartAnalysisReportRequest,
|
|
5
|
+
StartAnalysisReportResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartAnalysisReportCommandInput
|
|
15
|
+
extends StartAnalysisReportRequest {}
|
|
16
|
+
export interface StartAnalysisReportCommandOutput
|
|
17
|
+
extends StartAnalysisReportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartAnalysisReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartAnalysisReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartAnalysisReportCommandInput,
|
|
24
|
+
StartAnalysisReportCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartAnalysisReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartAnalysisReportCommandInput,
|
|
33
|
+
StartAnalysisReportCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartAnalysisReportCommand extends StartAnalysisReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartAnalysisReportRequest;
|
|
44
|
+
output: StartAnalysisReportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartAnalysisReportCommandInput;
|
|
48
|
+
output: StartAnalysisReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateFirewallAnalysisSettingsRequest,
|
|
5
|
+
UpdateFirewallAnalysisSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateFirewallAnalysisSettingsCommandInput
|
|
15
|
+
extends UpdateFirewallAnalysisSettingsRequest {}
|
|
16
|
+
export interface UpdateFirewallAnalysisSettingsCommandOutput
|
|
17
|
+
extends UpdateFirewallAnalysisSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateFirewallAnalysisSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateFirewallAnalysisSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateFirewallAnalysisSettingsCommandInput,
|
|
24
|
+
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [UpdateFirewallAnalysisSettingsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateFirewallAnalysisSettingsCommandInput,
|
|
33
|
+
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateFirewallAnalysisSettingsCommand extends UpdateFirewallAnalysisSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateFirewallAnalysisSettingsRequest;
|
|
44
|
+
output: UpdateFirewallAnalysisSettingsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateFirewallAnalysisSettingsCommandInput;
|
|
48
|
+
output: UpdateFirewallAnalysisSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -17,14 +17,18 @@ export * from "./DescribeRuleGroupCommand";
|
|
|
17
17
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
18
18
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
19
19
|
export * from "./DisassociateSubnetsCommand";
|
|
20
|
+
export * from "./GetAnalysisReportResultsCommand";
|
|
21
|
+
export * from "./ListAnalysisReportsCommand";
|
|
20
22
|
export * from "./ListFirewallPoliciesCommand";
|
|
21
23
|
export * from "./ListFirewallsCommand";
|
|
22
24
|
export * from "./ListRuleGroupsCommand";
|
|
23
25
|
export * from "./ListTLSInspectionConfigurationsCommand";
|
|
24
26
|
export * from "./ListTagsForResourceCommand";
|
|
25
27
|
export * from "./PutResourcePolicyCommand";
|
|
28
|
+
export * from "./StartAnalysisReportCommand";
|
|
26
29
|
export * from "./TagResourceCommand";
|
|
27
30
|
export * from "./UntagResourceCommand";
|
|
31
|
+
export * from "./UpdateFirewallAnalysisSettingsCommand";
|
|
28
32
|
export * from "./UpdateFirewallDeleteProtectionCommand";
|
|
29
33
|
export * from "./UpdateFirewallDescriptionCommand";
|
|
30
34
|
export * from "./UpdateFirewallEncryptionConfigurationCommand";
|
|
@@ -12,6 +12,32 @@ export interface ActionDefinition {
|
|
|
12
12
|
export interface Address {
|
|
13
13
|
AddressDefinition: string | undefined;
|
|
14
14
|
}
|
|
15
|
+
export declare const EnabledAnalysisType: {
|
|
16
|
+
readonly HTTP_HOST: "HTTP_HOST";
|
|
17
|
+
readonly TLS_SNI: "TLS_SNI";
|
|
18
|
+
};
|
|
19
|
+
export type EnabledAnalysisType =
|
|
20
|
+
(typeof EnabledAnalysisType)[keyof typeof EnabledAnalysisType];
|
|
21
|
+
export interface AnalysisReport {
|
|
22
|
+
AnalysisReportId?: string | undefined;
|
|
23
|
+
AnalysisType?: EnabledAnalysisType | undefined;
|
|
24
|
+
ReportTime?: Date | undefined;
|
|
25
|
+
Status?: string | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface Hits {
|
|
28
|
+
Count?: number | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface UniqueSources {
|
|
31
|
+
Count?: number | undefined;
|
|
32
|
+
}
|
|
33
|
+
export interface AnalysisTypeReportResult {
|
|
34
|
+
Protocol?: string | undefined;
|
|
35
|
+
FirstAccessed?: Date | undefined;
|
|
36
|
+
LastAccessed?: Date | undefined;
|
|
37
|
+
Domain?: string | undefined;
|
|
38
|
+
Hits?: Hits | undefined;
|
|
39
|
+
UniqueSources?: UniqueSources | undefined;
|
|
40
|
+
}
|
|
15
41
|
export declare const IdentifiedType: {
|
|
16
42
|
readonly STATELESS_RULE_CONTAINS_TCP_FLAGS: "STATELESS_RULE_CONTAINS_TCP_FLAGS";
|
|
17
43
|
readonly STATELESS_RULE_FORWARDING_ASYMMETRICALLY: "STATELESS_RULE_FORWARDING_ASYMMETRICALLY";
|
|
@@ -181,14 +207,15 @@ export interface Tag {
|
|
|
181
207
|
export interface CreateFirewallRequest {
|
|
182
208
|
FirewallName: string | undefined;
|
|
183
209
|
FirewallPolicyArn: string | undefined;
|
|
184
|
-
VpcId
|
|
185
|
-
SubnetMappings
|
|
210
|
+
VpcId?: string | undefined;
|
|
211
|
+
SubnetMappings?: SubnetMapping[] | undefined;
|
|
186
212
|
DeleteProtection?: boolean | undefined;
|
|
187
213
|
SubnetChangeProtection?: boolean | undefined;
|
|
188
214
|
FirewallPolicyChangeProtection?: boolean | undefined;
|
|
189
215
|
Description?: string | undefined;
|
|
190
216
|
Tags?: Tag[] | undefined;
|
|
191
217
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
218
|
+
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
192
219
|
}
|
|
193
220
|
export interface Firewall {
|
|
194
221
|
FirewallName?: string | undefined;
|
|
@@ -203,6 +230,7 @@ export interface Firewall {
|
|
|
203
230
|
FirewallId: string | undefined;
|
|
204
231
|
Tags?: Tag[] | undefined;
|
|
205
232
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
233
|
+
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
206
234
|
}
|
|
207
235
|
export declare const FirewallStatusValue: {
|
|
208
236
|
readonly DELETING: "DELETING";
|
|
@@ -724,6 +752,32 @@ export interface FirewallPolicyMetadata {
|
|
|
724
752
|
Name?: string | undefined;
|
|
725
753
|
Arn?: string | undefined;
|
|
726
754
|
}
|
|
755
|
+
export interface GetAnalysisReportResultsRequest {
|
|
756
|
+
FirewallName?: string | undefined;
|
|
757
|
+
AnalysisReportId: string | undefined;
|
|
758
|
+
FirewallArn?: string | undefined;
|
|
759
|
+
NextToken?: string | undefined;
|
|
760
|
+
MaxResults?: number | undefined;
|
|
761
|
+
}
|
|
762
|
+
export interface GetAnalysisReportResultsResponse {
|
|
763
|
+
Status?: string | undefined;
|
|
764
|
+
StartTime?: Date | undefined;
|
|
765
|
+
EndTime?: Date | undefined;
|
|
766
|
+
ReportTime?: Date | undefined;
|
|
767
|
+
AnalysisType?: EnabledAnalysisType | undefined;
|
|
768
|
+
NextToken?: string | undefined;
|
|
769
|
+
AnalysisReportResults?: AnalysisTypeReportResult[] | undefined;
|
|
770
|
+
}
|
|
771
|
+
export interface ListAnalysisReportsRequest {
|
|
772
|
+
FirewallName?: string | undefined;
|
|
773
|
+
FirewallArn?: string | undefined;
|
|
774
|
+
NextToken?: string | undefined;
|
|
775
|
+
MaxResults?: number | undefined;
|
|
776
|
+
}
|
|
777
|
+
export interface ListAnalysisReportsResponse {
|
|
778
|
+
AnalysisReports?: AnalysisReport[] | undefined;
|
|
779
|
+
NextToken?: string | undefined;
|
|
780
|
+
}
|
|
727
781
|
export interface ListFirewallPoliciesRequest {
|
|
728
782
|
NextToken?: string | undefined;
|
|
729
783
|
MaxResults?: number | undefined;
|
|
@@ -807,6 +861,14 @@ export interface PutResourcePolicyRequest {
|
|
|
807
861
|
Policy: string | undefined;
|
|
808
862
|
}
|
|
809
863
|
export interface PutResourcePolicyResponse {}
|
|
864
|
+
export interface StartAnalysisReportRequest {
|
|
865
|
+
FirewallName?: string | undefined;
|
|
866
|
+
FirewallArn?: string | undefined;
|
|
867
|
+
AnalysisType: EnabledAnalysisType | undefined;
|
|
868
|
+
}
|
|
869
|
+
export interface StartAnalysisReportResponse {
|
|
870
|
+
AnalysisReportId: string | undefined;
|
|
871
|
+
}
|
|
810
872
|
export interface TagResourceRequest {
|
|
811
873
|
ResourceArn: string | undefined;
|
|
812
874
|
Tags: Tag[] | undefined;
|
|
@@ -817,6 +879,18 @@ export interface UntagResourceRequest {
|
|
|
817
879
|
TagKeys: string[] | undefined;
|
|
818
880
|
}
|
|
819
881
|
export interface UntagResourceResponse {}
|
|
882
|
+
export interface UpdateFirewallAnalysisSettingsRequest {
|
|
883
|
+
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
884
|
+
FirewallArn?: string | undefined;
|
|
885
|
+
FirewallName?: string | undefined;
|
|
886
|
+
UpdateToken?: string | undefined;
|
|
887
|
+
}
|
|
888
|
+
export interface UpdateFirewallAnalysisSettingsResponse {
|
|
889
|
+
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
890
|
+
FirewallArn?: string | undefined;
|
|
891
|
+
FirewallName?: string | undefined;
|
|
892
|
+
UpdateToken?: string | undefined;
|
|
893
|
+
}
|
|
820
894
|
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
821
895
|
readonly name: "ResourceOwnerCheckException";
|
|
822
896
|
readonly $fault: "client";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetAnalysisReportResultsCommandInput,
|
|
4
|
+
GetAnalysisReportResultsCommandOutput,
|
|
5
|
+
} from "../commands/GetAnalysisReportResultsCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateGetAnalysisReportResults: (
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: GetAnalysisReportResultsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetAnalysisReportResultsCommandOutput>;
|