@aws-sdk/client-mailmanager 3.731.1 → 3.738.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 +33 -33
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAddressListImportJobsCommandInput, ListAddressListImportJobsCommandOutput } from "../commands/ListAddressListImportJobsCommand";
|
|
3
|
+
import { MailManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAddressListImportJobs: (config: MailManagerPaginationConfiguration, input: ListAddressListImportJobsCommandInput, ...rest: any[]) => Paginator<ListAddressListImportJobsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAddressListsCommandInput, ListAddressListsCommandOutput } from "../commands/ListAddressListsCommand";
|
|
3
|
+
import { MailManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAddressLists: (config: MailManagerPaginationConfiguration, input: ListAddressListsCommandInput, ...rest: any[]) => Paginator<ListAddressListsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMembersOfAddressListCommandInput, ListMembersOfAddressListCommandOutput } from "../commands/ListMembersOfAddressListCommand";
|
|
3
|
+
import { MailManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListMembersOfAddressList: (config: MailManagerPaginationConfiguration, input: ListMembersOfAddressListCommandInput, ...rest: any[]) => Paginator<ListMembersOfAddressListCommandOutput>;
|
|
@@ -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";
|
|
@@ -2,6 +2,8 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { CreateAddonInstanceCommandInput, CreateAddonInstanceCommandOutput } from "../commands/CreateAddonInstanceCommand";
|
|
4
4
|
import { CreateAddonSubscriptionCommandInput, CreateAddonSubscriptionCommandOutput } from "../commands/CreateAddonSubscriptionCommand";
|
|
5
|
+
import { CreateAddressListCommandInput, CreateAddressListCommandOutput } from "../commands/CreateAddressListCommand";
|
|
6
|
+
import { CreateAddressListImportJobCommandInput, CreateAddressListImportJobCommandOutput } from "../commands/CreateAddressListImportJobCommand";
|
|
5
7
|
import { CreateArchiveCommandInput, CreateArchiveCommandOutput } from "../commands/CreateArchiveCommand";
|
|
6
8
|
import { CreateIngressPointCommandInput, CreateIngressPointCommandOutput } from "../commands/CreateIngressPointCommand";
|
|
7
9
|
import { CreateRelayCommandInput, CreateRelayCommandOutput } from "../commands/CreateRelayCommand";
|
|
@@ -9,13 +11,17 @@ import { CreateRuleSetCommandInput, CreateRuleSetCommandOutput } from "../comman
|
|
|
9
11
|
import { CreateTrafficPolicyCommandInput, CreateTrafficPolicyCommandOutput } from "../commands/CreateTrafficPolicyCommand";
|
|
10
12
|
import { DeleteAddonInstanceCommandInput, DeleteAddonInstanceCommandOutput } from "../commands/DeleteAddonInstanceCommand";
|
|
11
13
|
import { DeleteAddonSubscriptionCommandInput, DeleteAddonSubscriptionCommandOutput } from "../commands/DeleteAddonSubscriptionCommand";
|
|
14
|
+
import { DeleteAddressListCommandInput, DeleteAddressListCommandOutput } from "../commands/DeleteAddressListCommand";
|
|
12
15
|
import { DeleteArchiveCommandInput, DeleteArchiveCommandOutput } from "../commands/DeleteArchiveCommand";
|
|
13
16
|
import { DeleteIngressPointCommandInput, DeleteIngressPointCommandOutput } from "../commands/DeleteIngressPointCommand";
|
|
14
17
|
import { DeleteRelayCommandInput, DeleteRelayCommandOutput } from "../commands/DeleteRelayCommand";
|
|
15
18
|
import { DeleteRuleSetCommandInput, DeleteRuleSetCommandOutput } from "../commands/DeleteRuleSetCommand";
|
|
16
19
|
import { DeleteTrafficPolicyCommandInput, DeleteTrafficPolicyCommandOutput } from "../commands/DeleteTrafficPolicyCommand";
|
|
20
|
+
import { DeregisterMemberFromAddressListCommandInput, DeregisterMemberFromAddressListCommandOutput } from "../commands/DeregisterMemberFromAddressListCommand";
|
|
17
21
|
import { GetAddonInstanceCommandInput, GetAddonInstanceCommandOutput } from "../commands/GetAddonInstanceCommand";
|
|
18
22
|
import { GetAddonSubscriptionCommandInput, GetAddonSubscriptionCommandOutput } from "../commands/GetAddonSubscriptionCommand";
|
|
23
|
+
import { GetAddressListCommandInput, GetAddressListCommandOutput } from "../commands/GetAddressListCommand";
|
|
24
|
+
import { GetAddressListImportJobCommandInput, GetAddressListImportJobCommandOutput } from "../commands/GetAddressListImportJobCommand";
|
|
19
25
|
import { GetArchiveCommandInput, GetArchiveCommandOutput } from "../commands/GetArchiveCommand";
|
|
20
26
|
import { GetArchiveExportCommandInput, GetArchiveExportCommandOutput } from "../commands/GetArchiveExportCommand";
|
|
21
27
|
import { GetArchiveMessageCommandInput, GetArchiveMessageCommandOutput } from "../commands/GetArchiveMessageCommand";
|
|
@@ -23,21 +29,28 @@ import { GetArchiveMessageContentCommandInput, GetArchiveMessageContentCommandOu
|
|
|
23
29
|
import { GetArchiveSearchCommandInput, GetArchiveSearchCommandOutput } from "../commands/GetArchiveSearchCommand";
|
|
24
30
|
import { GetArchiveSearchResultsCommandInput, GetArchiveSearchResultsCommandOutput } from "../commands/GetArchiveSearchResultsCommand";
|
|
25
31
|
import { GetIngressPointCommandInput, GetIngressPointCommandOutput } from "../commands/GetIngressPointCommand";
|
|
32
|
+
import { GetMemberOfAddressListCommandInput, GetMemberOfAddressListCommandOutput } from "../commands/GetMemberOfAddressListCommand";
|
|
26
33
|
import { GetRelayCommandInput, GetRelayCommandOutput } from "../commands/GetRelayCommand";
|
|
27
34
|
import { GetRuleSetCommandInput, GetRuleSetCommandOutput } from "../commands/GetRuleSetCommand";
|
|
28
35
|
import { GetTrafficPolicyCommandInput, GetTrafficPolicyCommandOutput } from "../commands/GetTrafficPolicyCommand";
|
|
29
36
|
import { ListAddonInstancesCommandInput, ListAddonInstancesCommandOutput } from "../commands/ListAddonInstancesCommand";
|
|
30
37
|
import { ListAddonSubscriptionsCommandInput, ListAddonSubscriptionsCommandOutput } from "../commands/ListAddonSubscriptionsCommand";
|
|
38
|
+
import { ListAddressListImportJobsCommandInput, ListAddressListImportJobsCommandOutput } from "../commands/ListAddressListImportJobsCommand";
|
|
39
|
+
import { ListAddressListsCommandInput, ListAddressListsCommandOutput } from "../commands/ListAddressListsCommand";
|
|
31
40
|
import { ListArchiveExportsCommandInput, ListArchiveExportsCommandOutput } from "../commands/ListArchiveExportsCommand";
|
|
32
41
|
import { ListArchivesCommandInput, ListArchivesCommandOutput } from "../commands/ListArchivesCommand";
|
|
33
42
|
import { ListArchiveSearchesCommandInput, ListArchiveSearchesCommandOutput } from "../commands/ListArchiveSearchesCommand";
|
|
34
43
|
import { ListIngressPointsCommandInput, ListIngressPointsCommandOutput } from "../commands/ListIngressPointsCommand";
|
|
44
|
+
import { ListMembersOfAddressListCommandInput, ListMembersOfAddressListCommandOutput } from "../commands/ListMembersOfAddressListCommand";
|
|
35
45
|
import { ListRelaysCommandInput, ListRelaysCommandOutput } from "../commands/ListRelaysCommand";
|
|
36
46
|
import { ListRuleSetsCommandInput, ListRuleSetsCommandOutput } from "../commands/ListRuleSetsCommand";
|
|
37
47
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
38
48
|
import { ListTrafficPoliciesCommandInput, ListTrafficPoliciesCommandOutput } from "../commands/ListTrafficPoliciesCommand";
|
|
49
|
+
import { RegisterMemberToAddressListCommandInput, RegisterMemberToAddressListCommandOutput } from "../commands/RegisterMemberToAddressListCommand";
|
|
50
|
+
import { StartAddressListImportJobCommandInput, StartAddressListImportJobCommandOutput } from "../commands/StartAddressListImportJobCommand";
|
|
39
51
|
import { StartArchiveExportCommandInput, StartArchiveExportCommandOutput } from "../commands/StartArchiveExportCommand";
|
|
40
52
|
import { StartArchiveSearchCommandInput, StartArchiveSearchCommandOutput } from "../commands/StartArchiveSearchCommand";
|
|
53
|
+
import { StopAddressListImportJobCommandInput, StopAddressListImportJobCommandOutput } from "../commands/StopAddressListImportJobCommand";
|
|
41
54
|
import { StopArchiveExportCommandInput, StopArchiveExportCommandOutput } from "../commands/StopArchiveExportCommand";
|
|
42
55
|
import { StopArchiveSearchCommandInput, StopArchiveSearchCommandOutput } from "../commands/StopArchiveSearchCommand";
|
|
43
56
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -55,6 +68,14 @@ export declare const se_CreateAddonInstanceCommand: (input: CreateAddonInstanceC
|
|
|
55
68
|
* serializeAws_json1_0CreateAddonSubscriptionCommand
|
|
56
69
|
*/
|
|
57
70
|
export declare const se_CreateAddonSubscriptionCommand: (input: CreateAddonSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_json1_0CreateAddressListCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_CreateAddressListCommand: (input: CreateAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_json1_0CreateAddressListImportJobCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_CreateAddressListImportJobCommand: (input: CreateAddressListImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
79
|
/**
|
|
59
80
|
* serializeAws_json1_0CreateArchiveCommand
|
|
60
81
|
*/
|
|
@@ -83,6 +104,10 @@ export declare const se_DeleteAddonInstanceCommand: (input: DeleteAddonInstanceC
|
|
|
83
104
|
* serializeAws_json1_0DeleteAddonSubscriptionCommand
|
|
84
105
|
*/
|
|
85
106
|
export declare const se_DeleteAddonSubscriptionCommand: (input: DeleteAddonSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
/**
|
|
108
|
+
* serializeAws_json1_0DeleteAddressListCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const se_DeleteAddressListCommand: (input: DeleteAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
111
|
/**
|
|
87
112
|
* serializeAws_json1_0DeleteArchiveCommand
|
|
88
113
|
*/
|
|
@@ -103,6 +128,10 @@ export declare const se_DeleteRuleSetCommand: (input: DeleteRuleSetCommandInput,
|
|
|
103
128
|
* serializeAws_json1_0DeleteTrafficPolicyCommand
|
|
104
129
|
*/
|
|
105
130
|
export declare const se_DeleteTrafficPolicyCommand: (input: DeleteTrafficPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
131
|
+
/**
|
|
132
|
+
* serializeAws_json1_0DeregisterMemberFromAddressListCommand
|
|
133
|
+
*/
|
|
134
|
+
export declare const se_DeregisterMemberFromAddressListCommand: (input: DeregisterMemberFromAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
135
|
/**
|
|
107
136
|
* serializeAws_json1_0GetAddonInstanceCommand
|
|
108
137
|
*/
|
|
@@ -111,6 +140,14 @@ export declare const se_GetAddonInstanceCommand: (input: GetAddonInstanceCommand
|
|
|
111
140
|
* serializeAws_json1_0GetAddonSubscriptionCommand
|
|
112
141
|
*/
|
|
113
142
|
export declare const se_GetAddonSubscriptionCommand: (input: GetAddonSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
|
+
/**
|
|
144
|
+
* serializeAws_json1_0GetAddressListCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const se_GetAddressListCommand: (input: GetAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
|
+
/**
|
|
148
|
+
* serializeAws_json1_0GetAddressListImportJobCommand
|
|
149
|
+
*/
|
|
150
|
+
export declare const se_GetAddressListImportJobCommand: (input: GetAddressListImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
151
|
/**
|
|
115
152
|
* serializeAws_json1_0GetArchiveCommand
|
|
116
153
|
*/
|
|
@@ -139,6 +176,10 @@ export declare const se_GetArchiveSearchResultsCommand: (input: GetArchiveSearch
|
|
|
139
176
|
* serializeAws_json1_0GetIngressPointCommand
|
|
140
177
|
*/
|
|
141
178
|
export declare const se_GetIngressPointCommand: (input: GetIngressPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
179
|
+
/**
|
|
180
|
+
* serializeAws_json1_0GetMemberOfAddressListCommand
|
|
181
|
+
*/
|
|
182
|
+
export declare const se_GetMemberOfAddressListCommand: (input: GetMemberOfAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
183
|
/**
|
|
143
184
|
* serializeAws_json1_0GetRelayCommand
|
|
144
185
|
*/
|
|
@@ -159,6 +200,14 @@ export declare const se_ListAddonInstancesCommand: (input: ListAddonInstancesCom
|
|
|
159
200
|
* serializeAws_json1_0ListAddonSubscriptionsCommand
|
|
160
201
|
*/
|
|
161
202
|
export declare const se_ListAddonSubscriptionsCommand: (input: ListAddonSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
203
|
+
/**
|
|
204
|
+
* serializeAws_json1_0ListAddressListImportJobsCommand
|
|
205
|
+
*/
|
|
206
|
+
export declare const se_ListAddressListImportJobsCommand: (input: ListAddressListImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
207
|
+
/**
|
|
208
|
+
* serializeAws_json1_0ListAddressListsCommand
|
|
209
|
+
*/
|
|
210
|
+
export declare const se_ListAddressListsCommand: (input: ListAddressListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
211
|
/**
|
|
163
212
|
* serializeAws_json1_0ListArchiveExportsCommand
|
|
164
213
|
*/
|
|
@@ -175,6 +224,10 @@ export declare const se_ListArchiveSearchesCommand: (input: ListArchiveSearchesC
|
|
|
175
224
|
* serializeAws_json1_0ListIngressPointsCommand
|
|
176
225
|
*/
|
|
177
226
|
export declare const se_ListIngressPointsCommand: (input: ListIngressPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
|
+
/**
|
|
228
|
+
* serializeAws_json1_0ListMembersOfAddressListCommand
|
|
229
|
+
*/
|
|
230
|
+
export declare const se_ListMembersOfAddressListCommand: (input: ListMembersOfAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
231
|
/**
|
|
179
232
|
* serializeAws_json1_0ListRelaysCommand
|
|
180
233
|
*/
|
|
@@ -191,6 +244,14 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
191
244
|
* serializeAws_json1_0ListTrafficPoliciesCommand
|
|
192
245
|
*/
|
|
193
246
|
export declare const se_ListTrafficPoliciesCommand: (input: ListTrafficPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
247
|
+
/**
|
|
248
|
+
* serializeAws_json1_0RegisterMemberToAddressListCommand
|
|
249
|
+
*/
|
|
250
|
+
export declare const se_RegisterMemberToAddressListCommand: (input: RegisterMemberToAddressListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
251
|
+
/**
|
|
252
|
+
* serializeAws_json1_0StartAddressListImportJobCommand
|
|
253
|
+
*/
|
|
254
|
+
export declare const se_StartAddressListImportJobCommand: (input: StartAddressListImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
194
255
|
/**
|
|
195
256
|
* serializeAws_json1_0StartArchiveExportCommand
|
|
196
257
|
*/
|
|
@@ -199,6 +260,10 @@ export declare const se_StartArchiveExportCommand: (input: StartArchiveExportCom
|
|
|
199
260
|
* serializeAws_json1_0StartArchiveSearchCommand
|
|
200
261
|
*/
|
|
201
262
|
export declare const se_StartArchiveSearchCommand: (input: StartArchiveSearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
263
|
+
/**
|
|
264
|
+
* serializeAws_json1_0StopAddressListImportJobCommand
|
|
265
|
+
*/
|
|
266
|
+
export declare const se_StopAddressListImportJobCommand: (input: StopAddressListImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
202
267
|
/**
|
|
203
268
|
* serializeAws_json1_0StopArchiveExportCommand
|
|
204
269
|
*/
|
|
@@ -243,6 +308,14 @@ export declare const de_CreateAddonInstanceCommand: (output: __HttpResponse, con
|
|
|
243
308
|
* deserializeAws_json1_0CreateAddonSubscriptionCommand
|
|
244
309
|
*/
|
|
245
310
|
export declare const de_CreateAddonSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAddonSubscriptionCommandOutput>;
|
|
311
|
+
/**
|
|
312
|
+
* deserializeAws_json1_0CreateAddressListCommand
|
|
313
|
+
*/
|
|
314
|
+
export declare const de_CreateAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAddressListCommandOutput>;
|
|
315
|
+
/**
|
|
316
|
+
* deserializeAws_json1_0CreateAddressListImportJobCommand
|
|
317
|
+
*/
|
|
318
|
+
export declare const de_CreateAddressListImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAddressListImportJobCommandOutput>;
|
|
246
319
|
/**
|
|
247
320
|
* deserializeAws_json1_0CreateArchiveCommand
|
|
248
321
|
*/
|
|
@@ -271,6 +344,10 @@ export declare const de_DeleteAddonInstanceCommand: (output: __HttpResponse, con
|
|
|
271
344
|
* deserializeAws_json1_0DeleteAddonSubscriptionCommand
|
|
272
345
|
*/
|
|
273
346
|
export declare const de_DeleteAddonSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAddonSubscriptionCommandOutput>;
|
|
347
|
+
/**
|
|
348
|
+
* deserializeAws_json1_0DeleteAddressListCommand
|
|
349
|
+
*/
|
|
350
|
+
export declare const de_DeleteAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAddressListCommandOutput>;
|
|
274
351
|
/**
|
|
275
352
|
* deserializeAws_json1_0DeleteArchiveCommand
|
|
276
353
|
*/
|
|
@@ -291,6 +368,10 @@ export declare const de_DeleteRuleSetCommand: (output: __HttpResponse, context:
|
|
|
291
368
|
* deserializeAws_json1_0DeleteTrafficPolicyCommand
|
|
292
369
|
*/
|
|
293
370
|
export declare const de_DeleteTrafficPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrafficPolicyCommandOutput>;
|
|
371
|
+
/**
|
|
372
|
+
* deserializeAws_json1_0DeregisterMemberFromAddressListCommand
|
|
373
|
+
*/
|
|
374
|
+
export declare const de_DeregisterMemberFromAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterMemberFromAddressListCommandOutput>;
|
|
294
375
|
/**
|
|
295
376
|
* deserializeAws_json1_0GetAddonInstanceCommand
|
|
296
377
|
*/
|
|
@@ -299,6 +380,14 @@ export declare const de_GetAddonInstanceCommand: (output: __HttpResponse, contex
|
|
|
299
380
|
* deserializeAws_json1_0GetAddonSubscriptionCommand
|
|
300
381
|
*/
|
|
301
382
|
export declare const de_GetAddonSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAddonSubscriptionCommandOutput>;
|
|
383
|
+
/**
|
|
384
|
+
* deserializeAws_json1_0GetAddressListCommand
|
|
385
|
+
*/
|
|
386
|
+
export declare const de_GetAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAddressListCommandOutput>;
|
|
387
|
+
/**
|
|
388
|
+
* deserializeAws_json1_0GetAddressListImportJobCommand
|
|
389
|
+
*/
|
|
390
|
+
export declare const de_GetAddressListImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAddressListImportJobCommandOutput>;
|
|
302
391
|
/**
|
|
303
392
|
* deserializeAws_json1_0GetArchiveCommand
|
|
304
393
|
*/
|
|
@@ -327,6 +416,10 @@ export declare const de_GetArchiveSearchResultsCommand: (output: __HttpResponse,
|
|
|
327
416
|
* deserializeAws_json1_0GetIngressPointCommand
|
|
328
417
|
*/
|
|
329
418
|
export declare const de_GetIngressPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIngressPointCommandOutput>;
|
|
419
|
+
/**
|
|
420
|
+
* deserializeAws_json1_0GetMemberOfAddressListCommand
|
|
421
|
+
*/
|
|
422
|
+
export declare const de_GetMemberOfAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMemberOfAddressListCommandOutput>;
|
|
330
423
|
/**
|
|
331
424
|
* deserializeAws_json1_0GetRelayCommand
|
|
332
425
|
*/
|
|
@@ -347,6 +440,14 @@ export declare const de_ListAddonInstancesCommand: (output: __HttpResponse, cont
|
|
|
347
440
|
* deserializeAws_json1_0ListAddonSubscriptionsCommand
|
|
348
441
|
*/
|
|
349
442
|
export declare const de_ListAddonSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAddonSubscriptionsCommandOutput>;
|
|
443
|
+
/**
|
|
444
|
+
* deserializeAws_json1_0ListAddressListImportJobsCommand
|
|
445
|
+
*/
|
|
446
|
+
export declare const de_ListAddressListImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAddressListImportJobsCommandOutput>;
|
|
447
|
+
/**
|
|
448
|
+
* deserializeAws_json1_0ListAddressListsCommand
|
|
449
|
+
*/
|
|
450
|
+
export declare const de_ListAddressListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAddressListsCommandOutput>;
|
|
350
451
|
/**
|
|
351
452
|
* deserializeAws_json1_0ListArchiveExportsCommand
|
|
352
453
|
*/
|
|
@@ -363,6 +464,10 @@ export declare const de_ListArchiveSearchesCommand: (output: __HttpResponse, con
|
|
|
363
464
|
* deserializeAws_json1_0ListIngressPointsCommand
|
|
364
465
|
*/
|
|
365
466
|
export declare const de_ListIngressPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIngressPointsCommandOutput>;
|
|
467
|
+
/**
|
|
468
|
+
* deserializeAws_json1_0ListMembersOfAddressListCommand
|
|
469
|
+
*/
|
|
470
|
+
export declare const de_ListMembersOfAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMembersOfAddressListCommandOutput>;
|
|
366
471
|
/**
|
|
367
472
|
* deserializeAws_json1_0ListRelaysCommand
|
|
368
473
|
*/
|
|
@@ -379,6 +484,14 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
379
484
|
* deserializeAws_json1_0ListTrafficPoliciesCommand
|
|
380
485
|
*/
|
|
381
486
|
export declare const de_ListTrafficPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrafficPoliciesCommandOutput>;
|
|
487
|
+
/**
|
|
488
|
+
* deserializeAws_json1_0RegisterMemberToAddressListCommand
|
|
489
|
+
*/
|
|
490
|
+
export declare const de_RegisterMemberToAddressListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterMemberToAddressListCommandOutput>;
|
|
491
|
+
/**
|
|
492
|
+
* deserializeAws_json1_0StartAddressListImportJobCommand
|
|
493
|
+
*/
|
|
494
|
+
export declare const de_StartAddressListImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAddressListImportJobCommandOutput>;
|
|
382
495
|
/**
|
|
383
496
|
* deserializeAws_json1_0StartArchiveExportCommand
|
|
384
497
|
*/
|
|
@@ -387,6 +500,10 @@ export declare const de_StartArchiveExportCommand: (output: __HttpResponse, cont
|
|
|
387
500
|
* deserializeAws_json1_0StartArchiveSearchCommand
|
|
388
501
|
*/
|
|
389
502
|
export declare const de_StartArchiveSearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartArchiveSearchCommandOutput>;
|
|
503
|
+
/**
|
|
504
|
+
* deserializeAws_json1_0StopAddressListImportJobCommand
|
|
505
|
+
*/
|
|
506
|
+
export declare const de_StopAddressListImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopAddressListImportJobCommandOutput>;
|
|
390
507
|
/**
|
|
391
508
|
* deserializeAws_json1_0StopArchiveExportCommand
|
|
392
509
|
*/
|
|
@@ -7,6 +7,14 @@ import {
|
|
|
7
7
|
CreateAddonSubscriptionCommandInput,
|
|
8
8
|
CreateAddonSubscriptionCommandOutput,
|
|
9
9
|
} from "./commands/CreateAddonSubscriptionCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateAddressListCommandInput,
|
|
12
|
+
CreateAddressListCommandOutput,
|
|
13
|
+
} from "./commands/CreateAddressListCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAddressListImportJobCommandInput,
|
|
16
|
+
CreateAddressListImportJobCommandOutput,
|
|
17
|
+
} from "./commands/CreateAddressListImportJobCommand";
|
|
10
18
|
import {
|
|
11
19
|
CreateArchiveCommandInput,
|
|
12
20
|
CreateArchiveCommandOutput,
|
|
@@ -35,6 +43,10 @@ import {
|
|
|
35
43
|
DeleteAddonSubscriptionCommandInput,
|
|
36
44
|
DeleteAddonSubscriptionCommandOutput,
|
|
37
45
|
} from "./commands/DeleteAddonSubscriptionCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteAddressListCommandInput,
|
|
48
|
+
DeleteAddressListCommandOutput,
|
|
49
|
+
} from "./commands/DeleteAddressListCommand";
|
|
38
50
|
import {
|
|
39
51
|
DeleteArchiveCommandInput,
|
|
40
52
|
DeleteArchiveCommandOutput,
|
|
@@ -55,6 +67,10 @@ import {
|
|
|
55
67
|
DeleteTrafficPolicyCommandInput,
|
|
56
68
|
DeleteTrafficPolicyCommandOutput,
|
|
57
69
|
} from "./commands/DeleteTrafficPolicyCommand";
|
|
70
|
+
import {
|
|
71
|
+
DeregisterMemberFromAddressListCommandInput,
|
|
72
|
+
DeregisterMemberFromAddressListCommandOutput,
|
|
73
|
+
} from "./commands/DeregisterMemberFromAddressListCommand";
|
|
58
74
|
import {
|
|
59
75
|
GetAddonInstanceCommandInput,
|
|
60
76
|
GetAddonInstanceCommandOutput,
|
|
@@ -63,6 +79,14 @@ import {
|
|
|
63
79
|
GetAddonSubscriptionCommandInput,
|
|
64
80
|
GetAddonSubscriptionCommandOutput,
|
|
65
81
|
} from "./commands/GetAddonSubscriptionCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetAddressListCommandInput,
|
|
84
|
+
GetAddressListCommandOutput,
|
|
85
|
+
} from "./commands/GetAddressListCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetAddressListImportJobCommandInput,
|
|
88
|
+
GetAddressListImportJobCommandOutput,
|
|
89
|
+
} from "./commands/GetAddressListImportJobCommand";
|
|
66
90
|
import {
|
|
67
91
|
GetArchiveCommandInput,
|
|
68
92
|
GetArchiveCommandOutput,
|
|
@@ -91,6 +115,10 @@ import {
|
|
|
91
115
|
GetIngressPointCommandInput,
|
|
92
116
|
GetIngressPointCommandOutput,
|
|
93
117
|
} from "./commands/GetIngressPointCommand";
|
|
118
|
+
import {
|
|
119
|
+
GetMemberOfAddressListCommandInput,
|
|
120
|
+
GetMemberOfAddressListCommandOutput,
|
|
121
|
+
} from "./commands/GetMemberOfAddressListCommand";
|
|
94
122
|
import {
|
|
95
123
|
GetRelayCommandInput,
|
|
96
124
|
GetRelayCommandOutput,
|
|
@@ -111,6 +139,14 @@ import {
|
|
|
111
139
|
ListAddonSubscriptionsCommandInput,
|
|
112
140
|
ListAddonSubscriptionsCommandOutput,
|
|
113
141
|
} from "./commands/ListAddonSubscriptionsCommand";
|
|
142
|
+
import {
|
|
143
|
+
ListAddressListImportJobsCommandInput,
|
|
144
|
+
ListAddressListImportJobsCommandOutput,
|
|
145
|
+
} from "./commands/ListAddressListImportJobsCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListAddressListsCommandInput,
|
|
148
|
+
ListAddressListsCommandOutput,
|
|
149
|
+
} from "./commands/ListAddressListsCommand";
|
|
114
150
|
import {
|
|
115
151
|
ListArchiveExportsCommandInput,
|
|
116
152
|
ListArchiveExportsCommandOutput,
|
|
@@ -127,6 +163,10 @@ import {
|
|
|
127
163
|
ListIngressPointsCommandInput,
|
|
128
164
|
ListIngressPointsCommandOutput,
|
|
129
165
|
} from "./commands/ListIngressPointsCommand";
|
|
166
|
+
import {
|
|
167
|
+
ListMembersOfAddressListCommandInput,
|
|
168
|
+
ListMembersOfAddressListCommandOutput,
|
|
169
|
+
} from "./commands/ListMembersOfAddressListCommand";
|
|
130
170
|
import {
|
|
131
171
|
ListRelaysCommandInput,
|
|
132
172
|
ListRelaysCommandOutput,
|
|
@@ -143,6 +183,14 @@ import {
|
|
|
143
183
|
ListTrafficPoliciesCommandInput,
|
|
144
184
|
ListTrafficPoliciesCommandOutput,
|
|
145
185
|
} from "./commands/ListTrafficPoliciesCommand";
|
|
186
|
+
import {
|
|
187
|
+
RegisterMemberToAddressListCommandInput,
|
|
188
|
+
RegisterMemberToAddressListCommandOutput,
|
|
189
|
+
} from "./commands/RegisterMemberToAddressListCommand";
|
|
190
|
+
import {
|
|
191
|
+
StartAddressListImportJobCommandInput,
|
|
192
|
+
StartAddressListImportJobCommandOutput,
|
|
193
|
+
} from "./commands/StartAddressListImportJobCommand";
|
|
146
194
|
import {
|
|
147
195
|
StartArchiveExportCommandInput,
|
|
148
196
|
StartArchiveExportCommandOutput,
|
|
@@ -151,6 +199,10 @@ import {
|
|
|
151
199
|
StartArchiveSearchCommandInput,
|
|
152
200
|
StartArchiveSearchCommandOutput,
|
|
153
201
|
} from "./commands/StartArchiveSearchCommand";
|
|
202
|
+
import {
|
|
203
|
+
StopAddressListImportJobCommandInput,
|
|
204
|
+
StopAddressListImportJobCommandOutput,
|
|
205
|
+
} from "./commands/StopAddressListImportJobCommand";
|
|
154
206
|
import {
|
|
155
207
|
StopArchiveExportCommandInput,
|
|
156
208
|
StopArchiveExportCommandOutput,
|
|
@@ -215,6 +267,32 @@ export interface MailManager {
|
|
|
215
267
|
options: __HttpHandlerOptions,
|
|
216
268
|
cb: (err: any, data?: CreateAddonSubscriptionCommandOutput) => void
|
|
217
269
|
): void;
|
|
270
|
+
createAddressList(
|
|
271
|
+
args: CreateAddressListCommandInput,
|
|
272
|
+
options?: __HttpHandlerOptions
|
|
273
|
+
): Promise<CreateAddressListCommandOutput>;
|
|
274
|
+
createAddressList(
|
|
275
|
+
args: CreateAddressListCommandInput,
|
|
276
|
+
cb: (err: any, data?: CreateAddressListCommandOutput) => void
|
|
277
|
+
): void;
|
|
278
|
+
createAddressList(
|
|
279
|
+
args: CreateAddressListCommandInput,
|
|
280
|
+
options: __HttpHandlerOptions,
|
|
281
|
+
cb: (err: any, data?: CreateAddressListCommandOutput) => void
|
|
282
|
+
): void;
|
|
283
|
+
createAddressListImportJob(
|
|
284
|
+
args: CreateAddressListImportJobCommandInput,
|
|
285
|
+
options?: __HttpHandlerOptions
|
|
286
|
+
): Promise<CreateAddressListImportJobCommandOutput>;
|
|
287
|
+
createAddressListImportJob(
|
|
288
|
+
args: CreateAddressListImportJobCommandInput,
|
|
289
|
+
cb: (err: any, data?: CreateAddressListImportJobCommandOutput) => void
|
|
290
|
+
): void;
|
|
291
|
+
createAddressListImportJob(
|
|
292
|
+
args: CreateAddressListImportJobCommandInput,
|
|
293
|
+
options: __HttpHandlerOptions,
|
|
294
|
+
cb: (err: any, data?: CreateAddressListImportJobCommandOutput) => void
|
|
295
|
+
): void;
|
|
218
296
|
createArchive(
|
|
219
297
|
args: CreateArchiveCommandInput,
|
|
220
298
|
options?: __HttpHandlerOptions
|
|
@@ -306,6 +384,19 @@ export interface MailManager {
|
|
|
306
384
|
options: __HttpHandlerOptions,
|
|
307
385
|
cb: (err: any, data?: DeleteAddonSubscriptionCommandOutput) => void
|
|
308
386
|
): void;
|
|
387
|
+
deleteAddressList(
|
|
388
|
+
args: DeleteAddressListCommandInput,
|
|
389
|
+
options?: __HttpHandlerOptions
|
|
390
|
+
): Promise<DeleteAddressListCommandOutput>;
|
|
391
|
+
deleteAddressList(
|
|
392
|
+
args: DeleteAddressListCommandInput,
|
|
393
|
+
cb: (err: any, data?: DeleteAddressListCommandOutput) => void
|
|
394
|
+
): void;
|
|
395
|
+
deleteAddressList(
|
|
396
|
+
args: DeleteAddressListCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (err: any, data?: DeleteAddressListCommandOutput) => void
|
|
399
|
+
): void;
|
|
309
400
|
deleteArchive(
|
|
310
401
|
args: DeleteArchiveCommandInput,
|
|
311
402
|
options?: __HttpHandlerOptions
|
|
@@ -371,6 +462,19 @@ export interface MailManager {
|
|
|
371
462
|
options: __HttpHandlerOptions,
|
|
372
463
|
cb: (err: any, data?: DeleteTrafficPolicyCommandOutput) => void
|
|
373
464
|
): void;
|
|
465
|
+
deregisterMemberFromAddressList(
|
|
466
|
+
args: DeregisterMemberFromAddressListCommandInput,
|
|
467
|
+
options?: __HttpHandlerOptions
|
|
468
|
+
): Promise<DeregisterMemberFromAddressListCommandOutput>;
|
|
469
|
+
deregisterMemberFromAddressList(
|
|
470
|
+
args: DeregisterMemberFromAddressListCommandInput,
|
|
471
|
+
cb: (err: any, data?: DeregisterMemberFromAddressListCommandOutput) => void
|
|
472
|
+
): void;
|
|
473
|
+
deregisterMemberFromAddressList(
|
|
474
|
+
args: DeregisterMemberFromAddressListCommandInput,
|
|
475
|
+
options: __HttpHandlerOptions,
|
|
476
|
+
cb: (err: any, data?: DeregisterMemberFromAddressListCommandOutput) => void
|
|
477
|
+
): void;
|
|
374
478
|
getAddonInstance(
|
|
375
479
|
args: GetAddonInstanceCommandInput,
|
|
376
480
|
options?: __HttpHandlerOptions
|
|
@@ -397,6 +501,32 @@ export interface MailManager {
|
|
|
397
501
|
options: __HttpHandlerOptions,
|
|
398
502
|
cb: (err: any, data?: GetAddonSubscriptionCommandOutput) => void
|
|
399
503
|
): void;
|
|
504
|
+
getAddressList(
|
|
505
|
+
args: GetAddressListCommandInput,
|
|
506
|
+
options?: __HttpHandlerOptions
|
|
507
|
+
): Promise<GetAddressListCommandOutput>;
|
|
508
|
+
getAddressList(
|
|
509
|
+
args: GetAddressListCommandInput,
|
|
510
|
+
cb: (err: any, data?: GetAddressListCommandOutput) => void
|
|
511
|
+
): void;
|
|
512
|
+
getAddressList(
|
|
513
|
+
args: GetAddressListCommandInput,
|
|
514
|
+
options: __HttpHandlerOptions,
|
|
515
|
+
cb: (err: any, data?: GetAddressListCommandOutput) => void
|
|
516
|
+
): void;
|
|
517
|
+
getAddressListImportJob(
|
|
518
|
+
args: GetAddressListImportJobCommandInput,
|
|
519
|
+
options?: __HttpHandlerOptions
|
|
520
|
+
): Promise<GetAddressListImportJobCommandOutput>;
|
|
521
|
+
getAddressListImportJob(
|
|
522
|
+
args: GetAddressListImportJobCommandInput,
|
|
523
|
+
cb: (err: any, data?: GetAddressListImportJobCommandOutput) => void
|
|
524
|
+
): void;
|
|
525
|
+
getAddressListImportJob(
|
|
526
|
+
args: GetAddressListImportJobCommandInput,
|
|
527
|
+
options: __HttpHandlerOptions,
|
|
528
|
+
cb: (err: any, data?: GetAddressListImportJobCommandOutput) => void
|
|
529
|
+
): void;
|
|
400
530
|
getArchive(
|
|
401
531
|
args: GetArchiveCommandInput,
|
|
402
532
|
options?: __HttpHandlerOptions
|
|
@@ -488,6 +618,19 @@ export interface MailManager {
|
|
|
488
618
|
options: __HttpHandlerOptions,
|
|
489
619
|
cb: (err: any, data?: GetIngressPointCommandOutput) => void
|
|
490
620
|
): void;
|
|
621
|
+
getMemberOfAddressList(
|
|
622
|
+
args: GetMemberOfAddressListCommandInput,
|
|
623
|
+
options?: __HttpHandlerOptions
|
|
624
|
+
): Promise<GetMemberOfAddressListCommandOutput>;
|
|
625
|
+
getMemberOfAddressList(
|
|
626
|
+
args: GetMemberOfAddressListCommandInput,
|
|
627
|
+
cb: (err: any, data?: GetMemberOfAddressListCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
getMemberOfAddressList(
|
|
630
|
+
args: GetMemberOfAddressListCommandInput,
|
|
631
|
+
options: __HttpHandlerOptions,
|
|
632
|
+
cb: (err: any, data?: GetMemberOfAddressListCommandOutput) => void
|
|
633
|
+
): void;
|
|
491
634
|
getRelay(
|
|
492
635
|
args: GetRelayCommandInput,
|
|
493
636
|
options?: __HttpHandlerOptions
|
|
@@ -555,6 +698,33 @@ export interface MailManager {
|
|
|
555
698
|
options: __HttpHandlerOptions,
|
|
556
699
|
cb: (err: any, data?: ListAddonSubscriptionsCommandOutput) => void
|
|
557
700
|
): void;
|
|
701
|
+
listAddressListImportJobs(
|
|
702
|
+
args: ListAddressListImportJobsCommandInput,
|
|
703
|
+
options?: __HttpHandlerOptions
|
|
704
|
+
): Promise<ListAddressListImportJobsCommandOutput>;
|
|
705
|
+
listAddressListImportJobs(
|
|
706
|
+
args: ListAddressListImportJobsCommandInput,
|
|
707
|
+
cb: (err: any, data?: ListAddressListImportJobsCommandOutput) => void
|
|
708
|
+
): void;
|
|
709
|
+
listAddressListImportJobs(
|
|
710
|
+
args: ListAddressListImportJobsCommandInput,
|
|
711
|
+
options: __HttpHandlerOptions,
|
|
712
|
+
cb: (err: any, data?: ListAddressListImportJobsCommandOutput) => void
|
|
713
|
+
): void;
|
|
714
|
+
listAddressLists(): Promise<ListAddressListsCommandOutput>;
|
|
715
|
+
listAddressLists(
|
|
716
|
+
args: ListAddressListsCommandInput,
|
|
717
|
+
options?: __HttpHandlerOptions
|
|
718
|
+
): Promise<ListAddressListsCommandOutput>;
|
|
719
|
+
listAddressLists(
|
|
720
|
+
args: ListAddressListsCommandInput,
|
|
721
|
+
cb: (err: any, data?: ListAddressListsCommandOutput) => void
|
|
722
|
+
): void;
|
|
723
|
+
listAddressLists(
|
|
724
|
+
args: ListAddressListsCommandInput,
|
|
725
|
+
options: __HttpHandlerOptions,
|
|
726
|
+
cb: (err: any, data?: ListAddressListsCommandOutput) => void
|
|
727
|
+
): void;
|
|
558
728
|
listArchiveExports(
|
|
559
729
|
args: ListArchiveExportsCommandInput,
|
|
560
730
|
options?: __HttpHandlerOptions
|
|
@@ -609,6 +779,19 @@ export interface MailManager {
|
|
|
609
779
|
options: __HttpHandlerOptions,
|
|
610
780
|
cb: (err: any, data?: ListIngressPointsCommandOutput) => void
|
|
611
781
|
): void;
|
|
782
|
+
listMembersOfAddressList(
|
|
783
|
+
args: ListMembersOfAddressListCommandInput,
|
|
784
|
+
options?: __HttpHandlerOptions
|
|
785
|
+
): Promise<ListMembersOfAddressListCommandOutput>;
|
|
786
|
+
listMembersOfAddressList(
|
|
787
|
+
args: ListMembersOfAddressListCommandInput,
|
|
788
|
+
cb: (err: any, data?: ListMembersOfAddressListCommandOutput) => void
|
|
789
|
+
): void;
|
|
790
|
+
listMembersOfAddressList(
|
|
791
|
+
args: ListMembersOfAddressListCommandInput,
|
|
792
|
+
options: __HttpHandlerOptions,
|
|
793
|
+
cb: (err: any, data?: ListMembersOfAddressListCommandOutput) => void
|
|
794
|
+
): void;
|
|
612
795
|
listRelays(): Promise<ListRelaysCommandOutput>;
|
|
613
796
|
listRelays(
|
|
614
797
|
args: ListRelaysCommandInput,
|
|
@@ -664,6 +847,32 @@ export interface MailManager {
|
|
|
664
847
|
options: __HttpHandlerOptions,
|
|
665
848
|
cb: (err: any, data?: ListTrafficPoliciesCommandOutput) => void
|
|
666
849
|
): void;
|
|
850
|
+
registerMemberToAddressList(
|
|
851
|
+
args: RegisterMemberToAddressListCommandInput,
|
|
852
|
+
options?: __HttpHandlerOptions
|
|
853
|
+
): Promise<RegisterMemberToAddressListCommandOutput>;
|
|
854
|
+
registerMemberToAddressList(
|
|
855
|
+
args: RegisterMemberToAddressListCommandInput,
|
|
856
|
+
cb: (err: any, data?: RegisterMemberToAddressListCommandOutput) => void
|
|
857
|
+
): void;
|
|
858
|
+
registerMemberToAddressList(
|
|
859
|
+
args: RegisterMemberToAddressListCommandInput,
|
|
860
|
+
options: __HttpHandlerOptions,
|
|
861
|
+
cb: (err: any, data?: RegisterMemberToAddressListCommandOutput) => void
|
|
862
|
+
): void;
|
|
863
|
+
startAddressListImportJob(
|
|
864
|
+
args: StartAddressListImportJobCommandInput,
|
|
865
|
+
options?: __HttpHandlerOptions
|
|
866
|
+
): Promise<StartAddressListImportJobCommandOutput>;
|
|
867
|
+
startAddressListImportJob(
|
|
868
|
+
args: StartAddressListImportJobCommandInput,
|
|
869
|
+
cb: (err: any, data?: StartAddressListImportJobCommandOutput) => void
|
|
870
|
+
): void;
|
|
871
|
+
startAddressListImportJob(
|
|
872
|
+
args: StartAddressListImportJobCommandInput,
|
|
873
|
+
options: __HttpHandlerOptions,
|
|
874
|
+
cb: (err: any, data?: StartAddressListImportJobCommandOutput) => void
|
|
875
|
+
): void;
|
|
667
876
|
startArchiveExport(
|
|
668
877
|
args: StartArchiveExportCommandInput,
|
|
669
878
|
options?: __HttpHandlerOptions
|
|
@@ -690,6 +899,19 @@ export interface MailManager {
|
|
|
690
899
|
options: __HttpHandlerOptions,
|
|
691
900
|
cb: (err: any, data?: StartArchiveSearchCommandOutput) => void
|
|
692
901
|
): void;
|
|
902
|
+
stopAddressListImportJob(
|
|
903
|
+
args: StopAddressListImportJobCommandInput,
|
|
904
|
+
options?: __HttpHandlerOptions
|
|
905
|
+
): Promise<StopAddressListImportJobCommandOutput>;
|
|
906
|
+
stopAddressListImportJob(
|
|
907
|
+
args: StopAddressListImportJobCommandInput,
|
|
908
|
+
cb: (err: any, data?: StopAddressListImportJobCommandOutput) => void
|
|
909
|
+
): void;
|
|
910
|
+
stopAddressListImportJob(
|
|
911
|
+
args: StopAddressListImportJobCommandInput,
|
|
912
|
+
options: __HttpHandlerOptions,
|
|
913
|
+
cb: (err: any, data?: StopAddressListImportJobCommandOutput) => void
|
|
914
|
+
): void;
|
|
693
915
|
stopArchiveExport(
|
|
694
916
|
args: StopArchiveExportCommandInput,
|
|
695
917
|
options?: __HttpHandlerOptions
|