@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,94 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
|
|
4
|
+
import { ListMembersOfAddressListRequest, ListMembersOfAddressListResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListMembersOfAddressListCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListMembersOfAddressListCommandInput extends ListMembersOfAddressListRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListMembersOfAddressListCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListMembersOfAddressListCommandOutput extends ListMembersOfAddressListResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListMembersOfAddressListCommand_base: {
|
|
25
|
+
new (input: ListMembersOfAddressListCommandInput): import("@smithy/smithy-client").CommandImpl<ListMembersOfAddressListCommandInput, ListMembersOfAddressListCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListMembersOfAddressListCommandInput): import("@smithy/smithy-client").CommandImpl<ListMembersOfAddressListCommandInput, ListMembersOfAddressListCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists members of an address list.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { MailManagerClient, ListMembersOfAddressListCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
35
|
+
* // const { MailManagerClient, ListMembersOfAddressListCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
36
|
+
* const client = new MailManagerClient(config);
|
|
37
|
+
* const input = { // ListMembersOfAddressListRequest
|
|
38
|
+
* AddressListId: "STRING_VALUE", // required
|
|
39
|
+
* Filter: { // AddressFilter
|
|
40
|
+
* AddressPrefix: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* PageSize: Number("int"),
|
|
44
|
+
* };
|
|
45
|
+
* const command = new ListMembersOfAddressListCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // ListMembersOfAddressListResponse
|
|
48
|
+
* // Addresses: [ // SavedAddresses // required
|
|
49
|
+
* // { // SavedAddress
|
|
50
|
+
* // Address: "STRING_VALUE", // required
|
|
51
|
+
* // CreatedTimestamp: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // NextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListMembersOfAddressListCommandInput - {@link ListMembersOfAddressListCommandInput}
|
|
60
|
+
* @returns {@link ListMembersOfAddressListCommandOutput}
|
|
61
|
+
* @see {@link ListMembersOfAddressListCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListMembersOfAddressListCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
72
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ValidationException} (client fault)
|
|
75
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link MailManagerServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class ListMembersOfAddressListCommand extends ListMembersOfAddressListCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: ListMembersOfAddressListRequest;
|
|
87
|
+
output: ListMembersOfAddressListResponse;
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: ListMembersOfAddressListCommandInput;
|
|
91
|
+
output: ListMembersOfAddressListCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
|
|
4
|
+
import { RegisterMemberToAddressListRequest, RegisterMemberToAddressListResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link RegisterMemberToAddressListCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface RegisterMemberToAddressListCommandInput extends RegisterMemberToAddressListRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link RegisterMemberToAddressListCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface RegisterMemberToAddressListCommandOutput extends RegisterMemberToAddressListResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const RegisterMemberToAddressListCommand_base: {
|
|
25
|
+
new (input: RegisterMemberToAddressListCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterMemberToAddressListCommandInput, RegisterMemberToAddressListCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: RegisterMemberToAddressListCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterMemberToAddressListCommandInput, RegisterMemberToAddressListCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Adds a member to an address list.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { MailManagerClient, RegisterMemberToAddressListCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
35
|
+
* // const { MailManagerClient, RegisterMemberToAddressListCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
36
|
+
* const client = new MailManagerClient(config);
|
|
37
|
+
* const input = { // RegisterMemberToAddressListRequest
|
|
38
|
+
* AddressListId: "STRING_VALUE", // required
|
|
39
|
+
* Address: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new RegisterMemberToAddressListCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param RegisterMemberToAddressListCommandInput - {@link RegisterMemberToAddressListCommandInput}
|
|
48
|
+
* @returns {@link RegisterMemberToAddressListCommandOutput}
|
|
49
|
+
* @see {@link RegisterMemberToAddressListCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link RegisterMemberToAddressListCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
60
|
+
* <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ValidationException} (client fault)
|
|
66
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link MailManagerServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
70
|
+
*
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare class RegisterMemberToAddressListCommand extends RegisterMemberToAddressListCommand_base {
|
|
74
|
+
/** @internal type navigation helper, not in runtime. */
|
|
75
|
+
protected static __types: {
|
|
76
|
+
api: {
|
|
77
|
+
input: RegisterMemberToAddressListRequest;
|
|
78
|
+
output: {};
|
|
79
|
+
};
|
|
80
|
+
sdk: {
|
|
81
|
+
input: RegisterMemberToAddressListCommandInput;
|
|
82
|
+
output: RegisterMemberToAddressListCommandOutput;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
|
|
4
|
+
import { StartAddressListImportJobRequest, StartAddressListImportJobResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartAddressListImportJobCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartAddressListImportJobCommandInput extends StartAddressListImportJobRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartAddressListImportJobCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartAddressListImportJobCommandOutput extends StartAddressListImportJobResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartAddressListImportJobCommand_base: {
|
|
25
|
+
new (input: StartAddressListImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartAddressListImportJobCommandInput, StartAddressListImportJobCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: StartAddressListImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartAddressListImportJobCommandInput, StartAddressListImportJobCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Starts an import job for an address list.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { MailManagerClient, StartAddressListImportJobCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
35
|
+
* // const { MailManagerClient, StartAddressListImportJobCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
36
|
+
* const client = new MailManagerClient(config);
|
|
37
|
+
* const input = { // StartAddressListImportJobRequest
|
|
38
|
+
* JobId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new StartAddressListImportJobCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param StartAddressListImportJobCommandInput - {@link StartAddressListImportJobCommandInput}
|
|
47
|
+
* @returns {@link StartAddressListImportJobCommandOutput}
|
|
48
|
+
* @see {@link StartAddressListImportJobCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link StartAddressListImportJobCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
62
|
+
* <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
65
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ValidationException} (client fault)
|
|
68
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link MailManagerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
72
|
+
*
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class StartAddressListImportJobCommand extends StartAddressListImportJobCommand_base {
|
|
76
|
+
/** @internal type navigation helper, not in runtime. */
|
|
77
|
+
protected static __types: {
|
|
78
|
+
api: {
|
|
79
|
+
input: StartAddressListImportJobRequest;
|
|
80
|
+
output: {};
|
|
81
|
+
};
|
|
82
|
+
sdk: {
|
|
83
|
+
input: StartAddressListImportJobCommandInput;
|
|
84
|
+
output: StartAddressListImportJobCommandOutput;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient";
|
|
4
|
+
import { StopAddressListImportJobRequest, StopAddressListImportJobResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StopAddressListImportJobCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StopAddressListImportJobCommandInput extends StopAddressListImportJobRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StopAddressListImportJobCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StopAddressListImportJobCommandOutput extends StopAddressListImportJobResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StopAddressListImportJobCommand_base: {
|
|
25
|
+
new (input: StopAddressListImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopAddressListImportJobCommandInput, StopAddressListImportJobCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: StopAddressListImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopAddressListImportJobCommandInput, StopAddressListImportJobCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Stops an ongoing import job for an address list.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { MailManagerClient, StopAddressListImportJobCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
35
|
+
* // const { MailManagerClient, StopAddressListImportJobCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
36
|
+
* const client = new MailManagerClient(config);
|
|
37
|
+
* const input = { // StopAddressListImportJobRequest
|
|
38
|
+
* JobId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new StopAddressListImportJobCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param StopAddressListImportJobCommandInput - {@link StopAddressListImportJobCommandInput}
|
|
47
|
+
* @returns {@link StopAddressListImportJobCommandOutput}
|
|
48
|
+
* @see {@link StopAddressListImportJobCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link StopAddressListImportJobCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
62
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link MailManagerServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
69
|
+
*
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class StopAddressListImportJobCommand extends StopAddressListImportJobCommand_base {
|
|
73
|
+
/** @internal type navigation helper, not in runtime. */
|
|
74
|
+
protected static __types: {
|
|
75
|
+
api: {
|
|
76
|
+
input: StopAddressListImportJobRequest;
|
|
77
|
+
output: {};
|
|
78
|
+
};
|
|
79
|
+
sdk: {
|
|
80
|
+
input: StopAddressListImportJobCommandInput;
|
|
81
|
+
output: StopAddressListImportJobCommandOutput;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
}
|
|
@@ -45,6 +45,12 @@ declare const UpdateRuleSetCommand_base: {
|
|
|
45
45
|
* BooleanExpression: { // RuleBooleanExpression
|
|
46
46
|
* Evaluate: { // RuleBooleanToEvaluate Union: only one key present
|
|
47
47
|
* Attribute: "READ_RECEIPT_REQUESTED" || "TLS" || "TLS_WRAPPED",
|
|
48
|
+
* IsInAddressList: { // RuleIsInAddressList
|
|
49
|
+
* Attribute: "RECIPIENT" || "MAIL_FROM" || "SENDER" || "FROM" || "TO" || "CC", // required
|
|
50
|
+
* AddressLists: [ // RuleAddressListArnList // required
|
|
51
|
+
* "STRING_VALUE",
|
|
52
|
+
* ],
|
|
53
|
+
* },
|
|
48
54
|
* },
|
|
49
55
|
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
50
56
|
* },
|
|
@@ -100,6 +106,12 @@ declare const UpdateRuleSetCommand_base: {
|
|
|
100
106
|
* BooleanExpression: {
|
|
101
107
|
* Evaluate: {// Union: only one key present
|
|
102
108
|
* Attribute: "READ_RECEIPT_REQUESTED" || "TLS" || "TLS_WRAPPED",
|
|
109
|
+
* IsInAddressList: {
|
|
110
|
+
* Attribute: "RECIPIENT" || "MAIL_FROM" || "SENDER" || "FROM" || "TO" || "CC", // required
|
|
111
|
+
* AddressLists: [ // required
|
|
112
|
+
* "STRING_VALUE",
|
|
113
|
+
* ],
|
|
114
|
+
* },
|
|
103
115
|
* },
|
|
104
116
|
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
105
117
|
* },
|
|
@@ -72,6 +72,12 @@ declare const UpdateTrafficPolicyCommand_base: {
|
|
|
72
72
|
* Analyzer: "STRING_VALUE", // required
|
|
73
73
|
* ResultField: "STRING_VALUE", // required
|
|
74
74
|
* },
|
|
75
|
+
* IsInAddressList: { // IngressIsInAddressList
|
|
76
|
+
* Attribute: "RECIPIENT", // required
|
|
77
|
+
* AddressLists: [ // IngressAddressListArnList // required
|
|
78
|
+
* "STRING_VALUE",
|
|
79
|
+
* ],
|
|
80
|
+
* },
|
|
75
81
|
* },
|
|
76
82
|
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
77
83
|
* },
|
|
@@ -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";
|