@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
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListMembersOfAddressListRequest,
|
|
10
|
+
ListMembersOfAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListMembersOfAddressListCommandInput
|
|
15
|
+
extends ListMembersOfAddressListRequest {}
|
|
16
|
+
export interface ListMembersOfAddressListCommandOutput
|
|
17
|
+
extends ListMembersOfAddressListResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListMembersOfAddressListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListMembersOfAddressListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListMembersOfAddressListCommandInput,
|
|
24
|
+
ListMembersOfAddressListCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListMembersOfAddressListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListMembersOfAddressListCommandInput,
|
|
33
|
+
ListMembersOfAddressListCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListMembersOfAddressListCommand extends ListMembersOfAddressListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListMembersOfAddressListRequest;
|
|
44
|
+
output: ListMembersOfAddressListResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListMembersOfAddressListCommandInput;
|
|
48
|
+
output: ListMembersOfAddressListCommandOutput;
|
|
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
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
RegisterMemberToAddressListRequest,
|
|
10
|
+
RegisterMemberToAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RegisterMemberToAddressListCommandInput
|
|
15
|
+
extends RegisterMemberToAddressListRequest {}
|
|
16
|
+
export interface RegisterMemberToAddressListCommandOutput
|
|
17
|
+
extends RegisterMemberToAddressListResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RegisterMemberToAddressListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RegisterMemberToAddressListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RegisterMemberToAddressListCommandInput,
|
|
24
|
+
RegisterMemberToAddressListCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: RegisterMemberToAddressListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RegisterMemberToAddressListCommandInput,
|
|
33
|
+
RegisterMemberToAddressListCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RegisterMemberToAddressListCommand extends RegisterMemberToAddressListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RegisterMemberToAddressListRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RegisterMemberToAddressListCommandInput;
|
|
48
|
+
output: RegisterMemberToAddressListCommandOutput;
|
|
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
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
StartAddressListImportJobRequest,
|
|
10
|
+
StartAddressListImportJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartAddressListImportJobCommandInput
|
|
15
|
+
extends StartAddressListImportJobRequest {}
|
|
16
|
+
export interface StartAddressListImportJobCommandOutput
|
|
17
|
+
extends StartAddressListImportJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartAddressListImportJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartAddressListImportJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartAddressListImportJobCommandInput,
|
|
24
|
+
StartAddressListImportJobCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartAddressListImportJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartAddressListImportJobCommandInput,
|
|
33
|
+
StartAddressListImportJobCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartAddressListImportJobCommand extends StartAddressListImportJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartAddressListImportJobRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartAddressListImportJobCommandInput;
|
|
48
|
+
output: StartAddressListImportJobCommandOutput;
|
|
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
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
StopAddressListImportJobRequest,
|
|
10
|
+
StopAddressListImportJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopAddressListImportJobCommandInput
|
|
15
|
+
extends StopAddressListImportJobRequest {}
|
|
16
|
+
export interface StopAddressListImportJobCommandOutput
|
|
17
|
+
extends StopAddressListImportJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StopAddressListImportJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StopAddressListImportJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StopAddressListImportJobCommandInput,
|
|
24
|
+
StopAddressListImportJobCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StopAddressListImportJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StopAddressListImportJobCommandInput,
|
|
33
|
+
StopAddressListImportJobCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StopAddressListImportJobCommand extends StopAddressListImportJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StopAddressListImportJobRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StopAddressListImportJobCommandInput;
|
|
48
|
+
output: StopAddressListImportJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./CreateAddonInstanceCommand";
|
|
2
2
|
export * from "./CreateAddonSubscriptionCommand";
|
|
3
|
+
export * from "./CreateAddressListCommand";
|
|
4
|
+
export * from "./CreateAddressListImportJobCommand";
|
|
3
5
|
export * from "./CreateArchiveCommand";
|
|
4
6
|
export * from "./CreateIngressPointCommand";
|
|
5
7
|
export * from "./CreateRelayCommand";
|
|
@@ -7,13 +9,17 @@ export * from "./CreateRuleSetCommand";
|
|
|
7
9
|
export * from "./CreateTrafficPolicyCommand";
|
|
8
10
|
export * from "./DeleteAddonInstanceCommand";
|
|
9
11
|
export * from "./DeleteAddonSubscriptionCommand";
|
|
12
|
+
export * from "./DeleteAddressListCommand";
|
|
10
13
|
export * from "./DeleteArchiveCommand";
|
|
11
14
|
export * from "./DeleteIngressPointCommand";
|
|
12
15
|
export * from "./DeleteRelayCommand";
|
|
13
16
|
export * from "./DeleteRuleSetCommand";
|
|
14
17
|
export * from "./DeleteTrafficPolicyCommand";
|
|
18
|
+
export * from "./DeregisterMemberFromAddressListCommand";
|
|
15
19
|
export * from "./GetAddonInstanceCommand";
|
|
16
20
|
export * from "./GetAddonSubscriptionCommand";
|
|
21
|
+
export * from "./GetAddressListCommand";
|
|
22
|
+
export * from "./GetAddressListImportJobCommand";
|
|
17
23
|
export * from "./GetArchiveCommand";
|
|
18
24
|
export * from "./GetArchiveExportCommand";
|
|
19
25
|
export * from "./GetArchiveMessageCommand";
|
|
@@ -21,21 +27,28 @@ export * from "./GetArchiveMessageContentCommand";
|
|
|
21
27
|
export * from "./GetArchiveSearchCommand";
|
|
22
28
|
export * from "./GetArchiveSearchResultsCommand";
|
|
23
29
|
export * from "./GetIngressPointCommand";
|
|
30
|
+
export * from "./GetMemberOfAddressListCommand";
|
|
24
31
|
export * from "./GetRelayCommand";
|
|
25
32
|
export * from "./GetRuleSetCommand";
|
|
26
33
|
export * from "./GetTrafficPolicyCommand";
|
|
27
34
|
export * from "./ListAddonInstancesCommand";
|
|
28
35
|
export * from "./ListAddonSubscriptionsCommand";
|
|
36
|
+
export * from "./ListAddressListImportJobsCommand";
|
|
37
|
+
export * from "./ListAddressListsCommand";
|
|
29
38
|
export * from "./ListArchiveExportsCommand";
|
|
30
39
|
export * from "./ListArchiveSearchesCommand";
|
|
31
40
|
export * from "./ListArchivesCommand";
|
|
32
41
|
export * from "./ListIngressPointsCommand";
|
|
42
|
+
export * from "./ListMembersOfAddressListCommand";
|
|
33
43
|
export * from "./ListRelaysCommand";
|
|
34
44
|
export * from "./ListRuleSetsCommand";
|
|
35
45
|
export * from "./ListTagsForResourceCommand";
|
|
36
46
|
export * from "./ListTrafficPoliciesCommand";
|
|
47
|
+
export * from "./RegisterMemberToAddressListCommand";
|
|
48
|
+
export * from "./StartAddressListImportJobCommand";
|
|
37
49
|
export * from "./StartArchiveExportCommand";
|
|
38
50
|
export * from "./StartArchiveSearchCommand";
|
|
51
|
+
export * from "./StopAddressListImportJobCommand";
|
|
39
52
|
export * from "./StopArchiveExportCommand";
|
|
40
53
|
export * from "./StopArchiveSearchCommand";
|
|
41
54
|
export * from "./TagResourceCommand";
|
|
@@ -127,6 +127,54 @@ export interface ListAddonSubscriptionsResponse {
|
|
|
127
127
|
AddonSubscriptions?: AddonSubscription[] | undefined;
|
|
128
128
|
NextToken?: string | undefined;
|
|
129
129
|
}
|
|
130
|
+
export interface AddressFilter {
|
|
131
|
+
AddressPrefix?: string | undefined;
|
|
132
|
+
}
|
|
133
|
+
export interface AddressList {
|
|
134
|
+
AddressListId: string | undefined;
|
|
135
|
+
AddressListArn: string | undefined;
|
|
136
|
+
AddressListName: string | undefined;
|
|
137
|
+
CreatedTimestamp: Date | undefined;
|
|
138
|
+
LastUpdatedTimestamp: Date | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface CreateAddressListRequest {
|
|
141
|
+
ClientToken?: string | undefined;
|
|
142
|
+
AddressListName: string | undefined;
|
|
143
|
+
Tags?: Tag[] | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface CreateAddressListResponse {
|
|
146
|
+
AddressListId: string | undefined;
|
|
147
|
+
}
|
|
148
|
+
export declare class ThrottlingException extends __BaseException {
|
|
149
|
+
readonly name: "ThrottlingException";
|
|
150
|
+
readonly $fault: "client";
|
|
151
|
+
Message?: string | undefined;
|
|
152
|
+
constructor(
|
|
153
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
export interface DeleteAddressListRequest {
|
|
157
|
+
AddressListId: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface DeleteAddressListResponse {}
|
|
160
|
+
export interface GetAddressListRequest {
|
|
161
|
+
AddressListId: string | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface GetAddressListResponse {
|
|
164
|
+
AddressListId: string | undefined;
|
|
165
|
+
AddressListArn: string | undefined;
|
|
166
|
+
AddressListName: string | undefined;
|
|
167
|
+
CreatedTimestamp: Date | undefined;
|
|
168
|
+
LastUpdatedTimestamp: Date | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface ListAddressListsRequest {
|
|
171
|
+
NextToken?: string | undefined;
|
|
172
|
+
PageSize?: number | undefined;
|
|
173
|
+
}
|
|
174
|
+
export interface ListAddressListsResponse {
|
|
175
|
+
AddressLists: AddressList[] | undefined;
|
|
176
|
+
NextToken?: string | undefined;
|
|
177
|
+
}
|
|
130
178
|
export interface Analysis {
|
|
131
179
|
Analyzer: string | undefined;
|
|
132
180
|
ResultField: string | undefined;
|
|
@@ -296,14 +344,6 @@ export interface CreateArchiveRequest {
|
|
|
296
344
|
export interface CreateArchiveResponse {
|
|
297
345
|
ArchiveId: string | undefined;
|
|
298
346
|
}
|
|
299
|
-
export declare class ThrottlingException extends __BaseException {
|
|
300
|
-
readonly name: "ThrottlingException";
|
|
301
|
-
readonly $fault: "client";
|
|
302
|
-
Message?: string | undefined;
|
|
303
|
-
constructor(
|
|
304
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
305
|
-
);
|
|
306
|
-
}
|
|
307
347
|
export interface DeleteArchiveRequest {
|
|
308
348
|
ArchiveId: string | undefined;
|
|
309
349
|
}
|
|
@@ -335,6 +375,25 @@ export interface UpdateArchiveRequest {
|
|
|
335
375
|
Retention?: ArchiveRetention | undefined;
|
|
336
376
|
}
|
|
337
377
|
export interface UpdateArchiveResponse {}
|
|
378
|
+
export declare const ImportDataType: {
|
|
379
|
+
readonly CSV: "CSV";
|
|
380
|
+
readonly JSON: "JSON";
|
|
381
|
+
};
|
|
382
|
+
export type ImportDataType =
|
|
383
|
+
(typeof ImportDataType)[keyof typeof ImportDataType];
|
|
384
|
+
export interface ImportDataFormat {
|
|
385
|
+
ImportDataType: ImportDataType | undefined;
|
|
386
|
+
}
|
|
387
|
+
export interface CreateAddressListImportJobRequest {
|
|
388
|
+
ClientToken?: string | undefined;
|
|
389
|
+
AddressListId: string | undefined;
|
|
390
|
+
Name: string | undefined;
|
|
391
|
+
ImportDataFormat: ImportDataFormat | undefined;
|
|
392
|
+
}
|
|
393
|
+
export interface CreateAddressListImportJobResponse {
|
|
394
|
+
JobId: string | undefined;
|
|
395
|
+
PreSignedUrl: string | undefined;
|
|
396
|
+
}
|
|
338
397
|
export type IngressPointConfiguration =
|
|
339
398
|
| IngressPointConfiguration.SecretArnMember
|
|
340
399
|
| IngressPointConfiguration.SmtpPasswordMember
|
|
@@ -608,20 +667,43 @@ export declare const RuleBooleanEmailAttribute: {
|
|
|
608
667
|
};
|
|
609
668
|
export type RuleBooleanEmailAttribute =
|
|
610
669
|
(typeof RuleBooleanEmailAttribute)[keyof typeof RuleBooleanEmailAttribute];
|
|
670
|
+
export declare const RuleAddressListEmailAttribute: {
|
|
671
|
+
readonly CC: "CC";
|
|
672
|
+
readonly FROM: "FROM";
|
|
673
|
+
readonly MAIL_FROM: "MAIL_FROM";
|
|
674
|
+
readonly RECIPIENT: "RECIPIENT";
|
|
675
|
+
readonly SENDER: "SENDER";
|
|
676
|
+
readonly TO: "TO";
|
|
677
|
+
};
|
|
678
|
+
export type RuleAddressListEmailAttribute =
|
|
679
|
+
(typeof RuleAddressListEmailAttribute)[keyof typeof RuleAddressListEmailAttribute];
|
|
680
|
+
export interface RuleIsInAddressList {
|
|
681
|
+
Attribute: RuleAddressListEmailAttribute | undefined;
|
|
682
|
+
AddressLists: string[] | undefined;
|
|
683
|
+
}
|
|
611
684
|
export type RuleBooleanToEvaluate =
|
|
612
685
|
| RuleBooleanToEvaluate.AttributeMember
|
|
686
|
+
| RuleBooleanToEvaluate.IsInAddressListMember
|
|
613
687
|
| RuleBooleanToEvaluate.$UnknownMember;
|
|
614
688
|
export declare namespace RuleBooleanToEvaluate {
|
|
615
689
|
interface AttributeMember {
|
|
616
690
|
Attribute: RuleBooleanEmailAttribute;
|
|
691
|
+
IsInAddressList?: never;
|
|
692
|
+
$unknown?: never;
|
|
693
|
+
}
|
|
694
|
+
interface IsInAddressListMember {
|
|
695
|
+
Attribute?: never;
|
|
696
|
+
IsInAddressList: RuleIsInAddressList;
|
|
617
697
|
$unknown?: never;
|
|
618
698
|
}
|
|
619
699
|
interface $UnknownMember {
|
|
620
700
|
Attribute?: never;
|
|
701
|
+
IsInAddressList?: never;
|
|
621
702
|
$unknown: [string, any];
|
|
622
703
|
}
|
|
623
704
|
interface Visitor<T> {
|
|
624
705
|
Attribute: (value: RuleBooleanEmailAttribute) => T;
|
|
706
|
+
IsInAddressList: (value: RuleIsInAddressList) => T;
|
|
625
707
|
_: (name: string, value: any) => T;
|
|
626
708
|
}
|
|
627
709
|
const visit: <T>(value: RuleBooleanToEvaluate, visitor: Visitor<T>) => T;
|
|
@@ -931,20 +1013,38 @@ export interface IngressAnalysis {
|
|
|
931
1013
|
Analyzer: string | undefined;
|
|
932
1014
|
ResultField: string | undefined;
|
|
933
1015
|
}
|
|
1016
|
+
export declare const IngressAddressListEmailAttribute: {
|
|
1017
|
+
readonly RECIPIENT: "RECIPIENT";
|
|
1018
|
+
};
|
|
1019
|
+
export type IngressAddressListEmailAttribute =
|
|
1020
|
+
(typeof IngressAddressListEmailAttribute)[keyof typeof IngressAddressListEmailAttribute];
|
|
1021
|
+
export interface IngressIsInAddressList {
|
|
1022
|
+
Attribute: IngressAddressListEmailAttribute | undefined;
|
|
1023
|
+
AddressLists: string[] | undefined;
|
|
1024
|
+
}
|
|
934
1025
|
export type IngressBooleanToEvaluate =
|
|
935
1026
|
| IngressBooleanToEvaluate.AnalysisMember
|
|
1027
|
+
| IngressBooleanToEvaluate.IsInAddressListMember
|
|
936
1028
|
| IngressBooleanToEvaluate.$UnknownMember;
|
|
937
1029
|
export declare namespace IngressBooleanToEvaluate {
|
|
938
1030
|
interface AnalysisMember {
|
|
939
1031
|
Analysis: IngressAnalysis;
|
|
1032
|
+
IsInAddressList?: never;
|
|
1033
|
+
$unknown?: never;
|
|
1034
|
+
}
|
|
1035
|
+
interface IsInAddressListMember {
|
|
1036
|
+
Analysis?: never;
|
|
1037
|
+
IsInAddressList: IngressIsInAddressList;
|
|
940
1038
|
$unknown?: never;
|
|
941
1039
|
}
|
|
942
1040
|
interface $UnknownMember {
|
|
943
1041
|
Analysis?: never;
|
|
1042
|
+
IsInAddressList?: never;
|
|
944
1043
|
$unknown: [string, any];
|
|
945
1044
|
}
|
|
946
1045
|
interface Visitor<T> {
|
|
947
1046
|
Analysis: (value: IngressAnalysis) => T;
|
|
1047
|
+
IsInAddressList: (value: IngressIsInAddressList) => T;
|
|
948
1048
|
_: (name: string, value: any) => T;
|
|
949
1049
|
}
|
|
950
1050
|
const visit: <T>(value: IngressBooleanToEvaluate, visitor: Visitor<T>) => T;
|
|
@@ -1155,6 +1255,11 @@ export interface DeleteTrafficPolicyRequest {
|
|
|
1155
1255
|
TrafficPolicyId: string | undefined;
|
|
1156
1256
|
}
|
|
1157
1257
|
export interface DeleteTrafficPolicyResponse {}
|
|
1258
|
+
export interface DeregisterMemberFromAddressListRequest {
|
|
1259
|
+
AddressListId: string | undefined;
|
|
1260
|
+
Address: string | undefined;
|
|
1261
|
+
}
|
|
1262
|
+
export interface DeregisterMemberFromAddressListResponse {}
|
|
1158
1263
|
export interface Envelope {
|
|
1159
1264
|
Helo?: string | undefined;
|
|
1160
1265
|
From?: string | undefined;
|
|
@@ -1203,6 +1308,32 @@ export interface ExportSummary {
|
|
|
1203
1308
|
ExportId?: string | undefined;
|
|
1204
1309
|
Status?: ExportStatus | undefined;
|
|
1205
1310
|
}
|
|
1311
|
+
export interface GetAddressListImportJobRequest {
|
|
1312
|
+
JobId: string | undefined;
|
|
1313
|
+
}
|
|
1314
|
+
export declare const ImportJobStatus: {
|
|
1315
|
+
readonly COMPLETED: "COMPLETED";
|
|
1316
|
+
readonly CREATED: "CREATED";
|
|
1317
|
+
readonly FAILED: "FAILED";
|
|
1318
|
+
readonly PROCESSING: "PROCESSING";
|
|
1319
|
+
readonly STOPPED: "STOPPED";
|
|
1320
|
+
};
|
|
1321
|
+
export type ImportJobStatus =
|
|
1322
|
+
(typeof ImportJobStatus)[keyof typeof ImportJobStatus];
|
|
1323
|
+
export interface GetAddressListImportJobResponse {
|
|
1324
|
+
JobId: string | undefined;
|
|
1325
|
+
Name: string | undefined;
|
|
1326
|
+
Status: ImportJobStatus | undefined;
|
|
1327
|
+
PreSignedUrl: string | undefined;
|
|
1328
|
+
ImportedItemsCount?: number | undefined;
|
|
1329
|
+
FailedItemsCount?: number | undefined;
|
|
1330
|
+
ImportDataFormat: ImportDataFormat | undefined;
|
|
1331
|
+
AddressListId: string | undefined;
|
|
1332
|
+
CreatedTimestamp: Date | undefined;
|
|
1333
|
+
StartTimestamp?: Date | undefined;
|
|
1334
|
+
CompletedTimestamp?: Date | undefined;
|
|
1335
|
+
Error?: string | undefined;
|
|
1336
|
+
}
|
|
1206
1337
|
export interface GetArchiveExportRequest {
|
|
1207
1338
|
ExportId: string | undefined;
|
|
1208
1339
|
}
|
|
@@ -1332,6 +1463,14 @@ export interface GetIngressPointResponse {
|
|
|
1332
1463
|
CreatedTimestamp?: Date | undefined;
|
|
1333
1464
|
LastUpdatedTimestamp?: Date | undefined;
|
|
1334
1465
|
}
|
|
1466
|
+
export interface GetMemberOfAddressListRequest {
|
|
1467
|
+
AddressListId: string | undefined;
|
|
1468
|
+
Address: string | undefined;
|
|
1469
|
+
}
|
|
1470
|
+
export interface GetMemberOfAddressListResponse {
|
|
1471
|
+
Address: string | undefined;
|
|
1472
|
+
CreatedTimestamp: Date | undefined;
|
|
1473
|
+
}
|
|
1335
1474
|
export interface GetRelayRequest {
|
|
1336
1475
|
RelayId: string | undefined;
|
|
1337
1476
|
}
|
|
@@ -1369,6 +1508,20 @@ export interface GetTrafficPolicyResponse {
|
|
|
1369
1508
|
CreatedTimestamp?: Date | undefined;
|
|
1370
1509
|
LastUpdatedTimestamp?: Date | undefined;
|
|
1371
1510
|
}
|
|
1511
|
+
export interface ImportJob {
|
|
1512
|
+
JobId: string | undefined;
|
|
1513
|
+
Name: string | undefined;
|
|
1514
|
+
Status: ImportJobStatus | undefined;
|
|
1515
|
+
PreSignedUrl: string | undefined;
|
|
1516
|
+
ImportedItemsCount?: number | undefined;
|
|
1517
|
+
FailedItemsCount?: number | undefined;
|
|
1518
|
+
ImportDataFormat: ImportDataFormat | undefined;
|
|
1519
|
+
AddressListId: string | undefined;
|
|
1520
|
+
CreatedTimestamp: Date | undefined;
|
|
1521
|
+
StartTimestamp?: Date | undefined;
|
|
1522
|
+
CompletedTimestamp?: Date | undefined;
|
|
1523
|
+
Error?: string | undefined;
|
|
1524
|
+
}
|
|
1372
1525
|
export interface IngressPoint {
|
|
1373
1526
|
IngressPointName: string | undefined;
|
|
1374
1527
|
IngressPointId: string | undefined;
|
|
@@ -1399,6 +1552,15 @@ export interface UpdateIngressPointRequest {
|
|
|
1399
1552
|
IngressPointConfiguration?: IngressPointConfiguration | undefined;
|
|
1400
1553
|
}
|
|
1401
1554
|
export interface UpdateIngressPointResponse {}
|
|
1555
|
+
export interface ListAddressListImportJobsRequest {
|
|
1556
|
+
AddressListId: string | undefined;
|
|
1557
|
+
NextToken?: string | undefined;
|
|
1558
|
+
PageSize?: number | undefined;
|
|
1559
|
+
}
|
|
1560
|
+
export interface ListAddressListImportJobsResponse {
|
|
1561
|
+
ImportJobs: ImportJob[] | undefined;
|
|
1562
|
+
NextToken?: string | undefined;
|
|
1563
|
+
}
|
|
1402
1564
|
export interface ListArchiveExportsRequest {
|
|
1403
1565
|
ArchiveId: string | undefined;
|
|
1404
1566
|
NextToken?: string | undefined;
|
|
@@ -1421,6 +1583,20 @@ export interface ListArchiveSearchesResponse {
|
|
|
1421
1583
|
Searches?: SearchSummary[] | undefined;
|
|
1422
1584
|
NextToken?: string | undefined;
|
|
1423
1585
|
}
|
|
1586
|
+
export interface ListMembersOfAddressListRequest {
|
|
1587
|
+
AddressListId: string | undefined;
|
|
1588
|
+
Filter?: AddressFilter | undefined;
|
|
1589
|
+
NextToken?: string | undefined;
|
|
1590
|
+
PageSize?: number | undefined;
|
|
1591
|
+
}
|
|
1592
|
+
export interface SavedAddress {
|
|
1593
|
+
Address: string | undefined;
|
|
1594
|
+
CreatedTimestamp: Date | undefined;
|
|
1595
|
+
}
|
|
1596
|
+
export interface ListMembersOfAddressListResponse {
|
|
1597
|
+
Addresses: SavedAddress[] | undefined;
|
|
1598
|
+
NextToken?: string | undefined;
|
|
1599
|
+
}
|
|
1424
1600
|
export interface ListRelaysRequest {
|
|
1425
1601
|
PageSize?: number | undefined;
|
|
1426
1602
|
NextToken?: string | undefined;
|
|
@@ -1466,6 +1642,11 @@ export interface ListTrafficPoliciesResponse {
|
|
|
1466
1642
|
TrafficPolicies?: TrafficPolicy[] | undefined;
|
|
1467
1643
|
NextToken?: string | undefined;
|
|
1468
1644
|
}
|
|
1645
|
+
export interface RegisterMemberToAddressListRequest {
|
|
1646
|
+
AddressListId: string | undefined;
|
|
1647
|
+
Address: string | undefined;
|
|
1648
|
+
}
|
|
1649
|
+
export interface RegisterMemberToAddressListResponse {}
|
|
1469
1650
|
export interface UpdateRelayRequest {
|
|
1470
1651
|
RelayId: string | undefined;
|
|
1471
1652
|
RelayName?: string | undefined;
|
|
@@ -1480,6 +1661,10 @@ export interface UpdateRuleSetRequest {
|
|
|
1480
1661
|
Rules?: Rule[] | undefined;
|
|
1481
1662
|
}
|
|
1482
1663
|
export interface UpdateRuleSetResponse {}
|
|
1664
|
+
export interface StartAddressListImportJobRequest {
|
|
1665
|
+
JobId: string | undefined;
|
|
1666
|
+
}
|
|
1667
|
+
export interface StartAddressListImportJobResponse {}
|
|
1483
1668
|
export interface StartArchiveExportRequest {
|
|
1484
1669
|
ArchiveId: string | undefined;
|
|
1485
1670
|
Filters?: ArchiveFilters | undefined;
|
|
@@ -1502,6 +1687,10 @@ export interface StartArchiveSearchRequest {
|
|
|
1502
1687
|
export interface StartArchiveSearchResponse {
|
|
1503
1688
|
SearchId?: string | undefined;
|
|
1504
1689
|
}
|
|
1690
|
+
export interface StopAddressListImportJobRequest {
|
|
1691
|
+
JobId: string | undefined;
|
|
1692
|
+
}
|
|
1693
|
+
export interface StopAddressListImportJobResponse {}
|
|
1505
1694
|
export interface StopArchiveExportRequest {
|
|
1506
1695
|
ExportId: string | undefined;
|
|
1507
1696
|
}
|
|
@@ -1528,15 +1717,11 @@ export interface UntagResourceRequest {
|
|
|
1528
1717
|
TagKeys: string[] | undefined;
|
|
1529
1718
|
}
|
|
1530
1719
|
export interface UntagResourceResponse {}
|
|
1531
|
-
export declare const
|
|
1532
|
-
|
|
1533
|
-
obj: CreateAddonInstanceRequest
|
|
1720
|
+
export declare const AddressFilterFilterSensitiveLog: (
|
|
1721
|
+
obj: AddressFilter
|
|
1534
1722
|
) => any;
|
|
1535
|
-
export declare const
|
|
1536
|
-
obj:
|
|
1537
|
-
) => any;
|
|
1538
|
-
export declare const CreateArchiveRequestFilterSensitiveLog: (
|
|
1539
|
-
obj: CreateArchiveRequest
|
|
1723
|
+
export declare const CreateAddressListImportJobResponseFilterSensitiveLog: (
|
|
1724
|
+
obj: CreateAddressListImportJobResponse
|
|
1540
1725
|
) => any;
|
|
1541
1726
|
export declare const IngressPointConfigurationFilterSensitiveLog: (
|
|
1542
1727
|
obj: IngressPointConfiguration
|
|
@@ -1544,9 +1729,6 @@ export declare const IngressPointConfigurationFilterSensitiveLog: (
|
|
|
1544
1729
|
export declare const CreateIngressPointRequestFilterSensitiveLog: (
|
|
1545
1730
|
obj: CreateIngressPointRequest
|
|
1546
1731
|
) => any;
|
|
1547
|
-
export declare const CreateRelayRequestFilterSensitiveLog: (
|
|
1548
|
-
obj: CreateRelayRequest
|
|
1549
|
-
) => any;
|
|
1550
1732
|
export declare const ReplaceRecipientActionFilterSensitiveLog: (
|
|
1551
1733
|
obj: ReplaceRecipientAction
|
|
1552
1734
|
) => any;
|
|
@@ -1555,8 +1737,11 @@ export declare const RuleFilterSensitiveLog: (obj: Rule) => any;
|
|
|
1555
1737
|
export declare const CreateRuleSetRequestFilterSensitiveLog: (
|
|
1556
1738
|
obj: CreateRuleSetRequest
|
|
1557
1739
|
) => any;
|
|
1558
|
-
export declare const
|
|
1559
|
-
obj:
|
|
1740
|
+
export declare const DeregisterMemberFromAddressListRequestFilterSensitiveLog: (
|
|
1741
|
+
obj: DeregisterMemberFromAddressListRequest
|
|
1742
|
+
) => any;
|
|
1743
|
+
export declare const GetAddressListImportJobResponseFilterSensitiveLog: (
|
|
1744
|
+
obj: GetAddressListImportJobResponse
|
|
1560
1745
|
) => any;
|
|
1561
1746
|
export declare const MetadataFilterSensitiveLog: (obj: Metadata) => any;
|
|
1562
1747
|
export declare const GetArchiveMessageResponseFilterSensitiveLog: (
|
|
@@ -1566,21 +1751,32 @@ export declare const RowFilterSensitiveLog: (obj: Row) => any;
|
|
|
1566
1751
|
export declare const GetArchiveSearchResultsResponseFilterSensitiveLog: (
|
|
1567
1752
|
obj: GetArchiveSearchResultsResponse
|
|
1568
1753
|
) => any;
|
|
1754
|
+
export declare const GetMemberOfAddressListRequestFilterSensitiveLog: (
|
|
1755
|
+
obj: GetMemberOfAddressListRequest
|
|
1756
|
+
) => any;
|
|
1757
|
+
export declare const GetMemberOfAddressListResponseFilterSensitiveLog: (
|
|
1758
|
+
obj: GetMemberOfAddressListResponse
|
|
1759
|
+
) => any;
|
|
1569
1760
|
export declare const GetRuleSetResponseFilterSensitiveLog: (
|
|
1570
1761
|
obj: GetRuleSetResponse
|
|
1571
1762
|
) => any;
|
|
1763
|
+
export declare const ImportJobFilterSensitiveLog: (obj: ImportJob) => any;
|
|
1572
1764
|
export declare const UpdateIngressPointRequestFilterSensitiveLog: (
|
|
1573
1765
|
obj: UpdateIngressPointRequest
|
|
1574
1766
|
) => any;
|
|
1575
|
-
export declare const
|
|
1576
|
-
obj:
|
|
1767
|
+
export declare const ListAddressListImportJobsResponseFilterSensitiveLog: (
|
|
1768
|
+
obj: ListAddressListImportJobsResponse
|
|
1577
1769
|
) => any;
|
|
1578
|
-
export declare const
|
|
1579
|
-
obj:
|
|
1770
|
+
export declare const ListMembersOfAddressListRequestFilterSensitiveLog: (
|
|
1771
|
+
obj: ListMembersOfAddressListRequest
|
|
1772
|
+
) => any;
|
|
1773
|
+
export declare const SavedAddressFilterSensitiveLog: (obj: SavedAddress) => any;
|
|
1774
|
+
export declare const ListMembersOfAddressListResponseFilterSensitiveLog: (
|
|
1775
|
+
obj: ListMembersOfAddressListResponse
|
|
1580
1776
|
) => any;
|
|
1581
|
-
export declare const
|
|
1582
|
-
obj:
|
|
1777
|
+
export declare const RegisterMemberToAddressListRequestFilterSensitiveLog: (
|
|
1778
|
+
obj: RegisterMemberToAddressListRequest
|
|
1583
1779
|
) => any;
|
|
1584
|
-
export declare const
|
|
1585
|
-
obj:
|
|
1780
|
+
export declare const UpdateRuleSetRequestFilterSensitiveLog: (
|
|
1781
|
+
obj: UpdateRuleSetRequest
|
|
1586
1782
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAddressListImportJobsCommandInput,
|
|
4
|
+
ListAddressListImportJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListAddressListImportJobsCommand";
|
|
6
|
+
import { MailManagerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAddressListImportJobs: (
|
|
8
|
+
config: MailManagerPaginationConfiguration,
|
|
9
|
+
input: ListAddressListImportJobsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAddressListImportJobsCommandOutput>;
|