@aws-sdk/client-mailmanager 3.734.0 → 3.741.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 +104 -0
- package/dist-cjs/MailManager.js +26 -0
- package/dist-cjs/commands/CreateAddonInstanceCommand.js +1 -2
- package/dist-cjs/commands/CreateAddonSubscriptionCommand.js +1 -2
- package/dist-cjs/commands/CreateAddressListCommand.js +26 -0
- package/dist-cjs/commands/CreateAddressListImportJobCommand.js +27 -0
- package/dist-cjs/commands/CreateArchiveCommand.js +1 -2
- package/dist-cjs/commands/CreateRelayCommand.js +1 -2
- package/dist-cjs/commands/CreateTrafficPolicyCommand.js +1 -2
- package/dist-cjs/commands/DeleteAddressListCommand.js +26 -0
- package/dist-cjs/commands/DeregisterMemberFromAddressListCommand.js +27 -0
- package/dist-cjs/commands/GetAddressListCommand.js +26 -0
- package/dist-cjs/commands/GetAddressListImportJobCommand.js +27 -0
- package/dist-cjs/commands/GetMemberOfAddressListCommand.js +27 -0
- package/dist-cjs/commands/ListAddressListImportJobsCommand.js +27 -0
- package/dist-cjs/commands/ListAddressListsCommand.js +26 -0
- package/dist-cjs/commands/ListMembersOfAddressListCommand.js +27 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -2
- package/dist-cjs/commands/RegisterMemberToAddressListCommand.js +27 -0
- package/dist-cjs/commands/StartAddressListImportJobCommand.js +26 -0
- package/dist-cjs/commands/StopAddressListImportJobCommand.js +26 -0
- package/dist-cjs/commands/TagResourceCommand.js +1 -2
- package/dist-cjs/commands/UntagResourceCommand.js +1 -2
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +94 -59
- package/dist-cjs/pagination/ListAddressListImportJobsPaginator.js +7 -0
- package/dist-cjs/pagination/ListAddressListsPaginator.js +7 -0
- package/dist-cjs/pagination/ListMembersOfAddressListPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_json1_0.js +395 -2
- package/dist-es/MailManager.js +26 -0
- package/dist-es/commands/CreateAddonInstanceCommand.js +1 -2
- package/dist-es/commands/CreateAddonSubscriptionCommand.js +1 -2
- package/dist-es/commands/CreateAddressListCommand.js +22 -0
- package/dist-es/commands/CreateAddressListImportJobCommand.js +23 -0
- package/dist-es/commands/CreateArchiveCommand.js +1 -2
- package/dist-es/commands/CreateRelayCommand.js +1 -2
- package/dist-es/commands/CreateTrafficPolicyCommand.js +1 -2
- package/dist-es/commands/DeleteAddressListCommand.js +22 -0
- package/dist-es/commands/DeregisterMemberFromAddressListCommand.js +23 -0
- package/dist-es/commands/GetAddressListCommand.js +22 -0
- package/dist-es/commands/GetAddressListImportJobCommand.js +23 -0
- package/dist-es/commands/GetMemberOfAddressListCommand.js +23 -0
- package/dist-es/commands/ListAddressListImportJobsCommand.js +23 -0
- package/dist-es/commands/ListAddressListsCommand.js +22 -0
- package/dist-es/commands/ListMembersOfAddressListCommand.js +23 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -2
- package/dist-es/commands/RegisterMemberToAddressListCommand.js +23 -0
- package/dist-es/commands/StartAddressListImportJobCommand.js +22 -0
- package/dist-es/commands/StopAddressListImportJobCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +1 -2
- package/dist-es/commands/UntagResourceCommand.js +1 -2
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +78 -46
- package/dist-es/pagination/ListAddressListImportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListAddressListsPaginator.js +4 -0
- package/dist-es/pagination/ListMembersOfAddressListPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +366 -0
- package/dist-types/MailManager.d.ts +92 -0
- package/dist-types/MailManagerClient.d.ts +15 -2
- package/dist-types/commands/CreateAddressListCommand.d.ts +93 -0
- package/dist-types/commands/CreateAddressListImportJobCommand.d.ts +89 -0
- package/dist-types/commands/CreateRuleSetCommand.d.ts +12 -0
- package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAddressListCommand.d.ts +78 -0
- package/dist-types/commands/DeregisterMemberFromAddressListCommand.d.ts +82 -0
- package/dist-types/commands/GetAddressListCommand.d.ts +87 -0
- package/dist-types/commands/GetAddressListImportJobCommand.d.ts +96 -0
- package/dist-types/commands/GetMemberOfAddressListCommand.d.ts +85 -0
- package/dist-types/commands/GetRuleSetCommand.d.ts +12 -0
- package/dist-types/commands/GetTrafficPolicyCommand.d.ts +6 -0
- package/dist-types/commands/ListAddressListImportJobsCommand.d.ts +103 -0
- package/dist-types/commands/ListAddressListsCommand.d.ts +90 -0
- package/dist-types/commands/ListMembersOfAddressListCommand.d.ts +94 -0
- package/dist-types/commands/RegisterMemberToAddressListCommand.d.ts +85 -0
- package/dist-types/commands/StartAddressListImportJobCommand.d.ts +87 -0
- package/dist-types/commands/StopAddressListImportJobCommand.d.ts +84 -0
- package/dist-types/commands/UpdateRuleSetCommand.d.ts +12 -0
- package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +702 -34
- package/dist-types/pagination/ListAddressListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAddressListsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMembersOfAddressListPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +117 -0
- package/dist-types/ts3.4/MailManager.d.ts +222 -0
- package/dist-types/ts3.4/MailManagerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterMemberFromAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAddressListCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMemberOfAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAddressListImportJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAddressListsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMembersOfAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterMemberToAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +225 -29
- package/dist-types/ts3.4/pagination/ListAddressListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAddressListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMembersOfAddressListPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +156 -0
- package/package.json +2 -2
|
@@ -78,6 +78,20 @@ export class ValidationException extends __BaseException {
|
|
|
78
78
|
this.Message = opts.Message;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
+
export class ThrottlingException extends __BaseException {
|
|
82
|
+
name = "ThrottlingException";
|
|
83
|
+
$fault = "client";
|
|
84
|
+
Message;
|
|
85
|
+
constructor(opts) {
|
|
86
|
+
super({
|
|
87
|
+
name: "ThrottlingException",
|
|
88
|
+
$fault: "client",
|
|
89
|
+
...opts,
|
|
90
|
+
});
|
|
91
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
92
|
+
this.Message = opts.Message;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
81
95
|
export const ArchiveState = {
|
|
82
96
|
ACTIVE: "ACTIVE",
|
|
83
97
|
PENDING_DELETION: "PENDING_DELETION",
|
|
@@ -152,20 +166,10 @@ export var ArchiveRetention;
|
|
|
152
166
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
153
167
|
};
|
|
154
168
|
})(ArchiveRetention || (ArchiveRetention = {}));
|
|
155
|
-
export
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ThrottlingException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
166
|
-
this.Message = opts.Message;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
+
export const ImportDataType = {
|
|
170
|
+
CSV: "CSV",
|
|
171
|
+
JSON: "JSON",
|
|
172
|
+
};
|
|
169
173
|
export var IngressPointConfiguration;
|
|
170
174
|
(function (IngressPointConfiguration) {
|
|
171
175
|
IngressPointConfiguration.visit = (value, visitor) => {
|
|
@@ -223,11 +227,21 @@ export const RuleBooleanEmailAttribute = {
|
|
|
223
227
|
TLS: "TLS",
|
|
224
228
|
TLS_WRAPPED: "TLS_WRAPPED",
|
|
225
229
|
};
|
|
230
|
+
export const RuleAddressListEmailAttribute = {
|
|
231
|
+
CC: "CC",
|
|
232
|
+
FROM: "FROM",
|
|
233
|
+
MAIL_FROM: "MAIL_FROM",
|
|
234
|
+
RECIPIENT: "RECIPIENT",
|
|
235
|
+
SENDER: "SENDER",
|
|
236
|
+
TO: "TO",
|
|
237
|
+
};
|
|
226
238
|
export var RuleBooleanToEvaluate;
|
|
227
239
|
(function (RuleBooleanToEvaluate) {
|
|
228
240
|
RuleBooleanToEvaluate.visit = (value, visitor) => {
|
|
229
241
|
if (value.Attribute !== undefined)
|
|
230
242
|
return visitor.Attribute(value.Attribute);
|
|
243
|
+
if (value.IsInAddressList !== undefined)
|
|
244
|
+
return visitor.IsInAddressList(value.IsInAddressList);
|
|
231
245
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
232
246
|
};
|
|
233
247
|
})(RuleBooleanToEvaluate || (RuleBooleanToEvaluate = {}));
|
|
@@ -347,11 +361,16 @@ export var RuleCondition;
|
|
|
347
361
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
348
362
|
};
|
|
349
363
|
})(RuleCondition || (RuleCondition = {}));
|
|
364
|
+
export const IngressAddressListEmailAttribute = {
|
|
365
|
+
RECIPIENT: "RECIPIENT",
|
|
366
|
+
};
|
|
350
367
|
export var IngressBooleanToEvaluate;
|
|
351
368
|
(function (IngressBooleanToEvaluate) {
|
|
352
369
|
IngressBooleanToEvaluate.visit = (value, visitor) => {
|
|
353
370
|
if (value.Analysis !== undefined)
|
|
354
371
|
return visitor.Analysis(value.Analysis);
|
|
372
|
+
if (value.IsInAddressList !== undefined)
|
|
373
|
+
return visitor.IsInAddressList(value.IsInAddressList);
|
|
355
374
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
356
375
|
};
|
|
357
376
|
})(IngressBooleanToEvaluate || (IngressBooleanToEvaluate = {}));
|
|
@@ -441,6 +460,13 @@ export const ExportState = {
|
|
|
441
460
|
PROCESSING: "PROCESSING",
|
|
442
461
|
QUEUED: "QUEUED",
|
|
443
462
|
};
|
|
463
|
+
export const ImportJobStatus = {
|
|
464
|
+
COMPLETED: "COMPLETED",
|
|
465
|
+
CREATED: "CREATED",
|
|
466
|
+
FAILED: "FAILED",
|
|
467
|
+
PROCESSING: "PROCESSING",
|
|
468
|
+
STOPPED: "STOPPED",
|
|
469
|
+
};
|
|
444
470
|
export const SearchState = {
|
|
445
471
|
CANCELLED: "CANCELLED",
|
|
446
472
|
COMPLETED: "COMPLETED",
|
|
@@ -460,23 +486,13 @@ export const IngressPointStatusToUpdate = {
|
|
|
460
486
|
ACTIVE: "ACTIVE",
|
|
461
487
|
CLOSED: "CLOSED",
|
|
462
488
|
};
|
|
463
|
-
export const
|
|
464
|
-
...obj,
|
|
465
|
-
...(obj.Key && { Key: SENSITIVE_STRING }),
|
|
466
|
-
...(obj.Value && { Value: SENSITIVE_STRING }),
|
|
467
|
-
});
|
|
468
|
-
export const CreateAddonInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
489
|
+
export const AddressFilterFilterSensitiveLog = (obj) => ({
|
|
469
490
|
...obj,
|
|
470
|
-
...(obj.
|
|
491
|
+
...(obj.AddressPrefix && { AddressPrefix: SENSITIVE_STRING }),
|
|
471
492
|
});
|
|
472
|
-
export const
|
|
493
|
+
export const CreateAddressListImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
473
494
|
...obj,
|
|
474
|
-
...(obj.
|
|
475
|
-
});
|
|
476
|
-
export const CreateArchiveRequestFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
...(obj.Retention && { Retention: obj.Retention }),
|
|
479
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
495
|
+
...(obj.PreSignedUrl && { PreSignedUrl: SENSITIVE_STRING }),
|
|
480
496
|
});
|
|
481
497
|
export const IngressPointConfigurationFilterSensitiveLog = (obj) => {
|
|
482
498
|
if (obj.SmtpPassword !== undefined)
|
|
@@ -491,12 +507,6 @@ export const CreateIngressPointRequestFilterSensitiveLog = (obj) => ({
|
|
|
491
507
|
...(obj.IngressPointConfiguration && {
|
|
492
508
|
IngressPointConfiguration: IngressPointConfigurationFilterSensitiveLog(obj.IngressPointConfiguration),
|
|
493
509
|
}),
|
|
494
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
495
|
-
});
|
|
496
|
-
export const CreateRelayRequestFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
...(obj.Authentication && { Authentication: obj.Authentication }),
|
|
499
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
500
510
|
});
|
|
501
511
|
export const ReplaceRecipientActionFilterSensitiveLog = (obj) => ({
|
|
502
512
|
...obj,
|
|
@@ -533,12 +543,14 @@ export const RuleFilterSensitiveLog = (obj) => ({
|
|
|
533
543
|
export const CreateRuleSetRequestFilterSensitiveLog = (obj) => ({
|
|
534
544
|
...obj,
|
|
535
545
|
...(obj.Rules && { Rules: obj.Rules.map((item) => RuleFilterSensitiveLog(item)) }),
|
|
536
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
537
546
|
});
|
|
538
|
-
export const
|
|
547
|
+
export const DeregisterMemberFromAddressListRequestFilterSensitiveLog = (obj) => ({
|
|
539
548
|
...obj,
|
|
540
|
-
...(obj.
|
|
541
|
-
|
|
549
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
550
|
+
});
|
|
551
|
+
export const GetAddressListImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
...(obj.PreSignedUrl && { PreSignedUrl: SENSITIVE_STRING }),
|
|
542
554
|
});
|
|
543
555
|
export const MetadataFilterSensitiveLog = (obj) => ({
|
|
544
556
|
...obj,
|
|
@@ -556,29 +568,49 @@ export const GetArchiveSearchResultsResponseFilterSensitiveLog = (obj) => ({
|
|
|
556
568
|
...obj,
|
|
557
569
|
...(obj.Rows && { Rows: obj.Rows.map((item) => RowFilterSensitiveLog(item)) }),
|
|
558
570
|
});
|
|
571
|
+
export const GetMemberOfAddressListRequestFilterSensitiveLog = (obj) => ({
|
|
572
|
+
...obj,
|
|
573
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
574
|
+
});
|
|
575
|
+
export const GetMemberOfAddressListResponseFilterSensitiveLog = (obj) => ({
|
|
576
|
+
...obj,
|
|
577
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
578
|
+
});
|
|
559
579
|
export const GetRuleSetResponseFilterSensitiveLog = (obj) => ({
|
|
560
580
|
...obj,
|
|
561
581
|
...(obj.Rules && { Rules: obj.Rules.map((item) => RuleFilterSensitiveLog(item)) }),
|
|
562
582
|
});
|
|
583
|
+
export const ImportJobFilterSensitiveLog = (obj) => ({
|
|
584
|
+
...obj,
|
|
585
|
+
...(obj.PreSignedUrl && { PreSignedUrl: SENSITIVE_STRING }),
|
|
586
|
+
});
|
|
563
587
|
export const UpdateIngressPointRequestFilterSensitiveLog = (obj) => ({
|
|
564
588
|
...obj,
|
|
565
589
|
...(obj.IngressPointConfiguration && {
|
|
566
590
|
IngressPointConfiguration: IngressPointConfigurationFilterSensitiveLog(obj.IngressPointConfiguration),
|
|
567
591
|
}),
|
|
568
592
|
});
|
|
569
|
-
export const
|
|
593
|
+
export const ListAddressListImportJobsResponseFilterSensitiveLog = (obj) => ({
|
|
570
594
|
...obj,
|
|
571
|
-
...(obj.
|
|
595
|
+
...(obj.ImportJobs && { ImportJobs: obj.ImportJobs.map((item) => ImportJobFilterSensitiveLog(item)) }),
|
|
572
596
|
});
|
|
573
|
-
export const
|
|
597
|
+
export const ListMembersOfAddressListRequestFilterSensitiveLog = (obj) => ({
|
|
574
598
|
...obj,
|
|
575
|
-
...(obj.
|
|
599
|
+
...(obj.Filter && { Filter: AddressFilterFilterSensitiveLog(obj.Filter) }),
|
|
600
|
+
});
|
|
601
|
+
export const SavedAddressFilterSensitiveLog = (obj) => ({
|
|
602
|
+
...obj,
|
|
603
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
576
604
|
});
|
|
577
|
-
export const
|
|
605
|
+
export const ListMembersOfAddressListResponseFilterSensitiveLog = (obj) => ({
|
|
578
606
|
...obj,
|
|
579
|
-
...(obj.
|
|
607
|
+
...(obj.Addresses && { Addresses: obj.Addresses.map((item) => SavedAddressFilterSensitiveLog(item)) }),
|
|
580
608
|
});
|
|
581
|
-
export const
|
|
609
|
+
export const RegisterMemberToAddressListRequestFilterSensitiveLog = (obj) => ({
|
|
582
610
|
...obj,
|
|
583
|
-
...(obj.
|
|
611
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
612
|
+
});
|
|
613
|
+
export const UpdateRuleSetRequestFilterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
...(obj.Rules && { Rules: obj.Rules.map((item) => RuleFilterSensitiveLog(item)) }),
|
|
584
616
|
});
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAddressListImportJobsCommand, } from "../commands/ListAddressListImportJobsCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListAddressListImportJobs = createPaginator(MailManagerClient, ListAddressListImportJobsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAddressListsCommand, } from "../commands/ListAddressListsCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListAddressLists = createPaginator(MailManagerClient, ListAddressListsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListMembersOfAddressListCommand, } from "../commands/ListMembersOfAddressListCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListMembersOfAddressList = createPaginator(MailManagerClient, ListMembersOfAddressListCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAddonInstancesPaginator";
|
|
3
3
|
export * from "./ListAddonSubscriptionsPaginator";
|
|
4
|
+
export * from "./ListAddressListImportJobsPaginator";
|
|
5
|
+
export * from "./ListAddressListsPaginator";
|
|
4
6
|
export * from "./ListArchiveExportsPaginator";
|
|
5
7
|
export * from "./ListArchiveSearchesPaginator";
|
|
6
8
|
export * from "./ListArchivesPaginator";
|
|
7
9
|
export * from "./ListIngressPointsPaginator";
|
|
10
|
+
export * from "./ListMembersOfAddressListPaginator";
|
|
8
11
|
export * from "./ListRelaysPaginator";
|
|
9
12
|
export * from "./ListRuleSetsPaginator";
|
|
10
13
|
export * from "./ListTrafficPoliciesPaginator";
|