@aws-sdk/client-mailmanager 3.581.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/LICENSE +201 -0
- package/README.md +589 -0
- package/dist-cjs/MailManager.js +105 -0
- package/dist-cjs/MailManagerClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateAddonInstanceCommand.js +29 -0
- package/dist-cjs/commands/CreateAddonSubscriptionCommand.js +29 -0
- package/dist-cjs/commands/CreateArchiveCommand.js +29 -0
- package/dist-cjs/commands/CreateIngressPointCommand.js +29 -0
- package/dist-cjs/commands/CreateRelayCommand.js +29 -0
- package/dist-cjs/commands/CreateRuleSetCommand.js +29 -0
- package/dist-cjs/commands/CreateTrafficPolicyCommand.js +29 -0
- package/dist-cjs/commands/DeleteAddonInstanceCommand.js +28 -0
- package/dist-cjs/commands/DeleteAddonSubscriptionCommand.js +28 -0
- package/dist-cjs/commands/DeleteArchiveCommand.js +28 -0
- package/dist-cjs/commands/DeleteIngressPointCommand.js +28 -0
- package/dist-cjs/commands/DeleteRelayCommand.js +28 -0
- package/dist-cjs/commands/DeleteRuleSetCommand.js +28 -0
- package/dist-cjs/commands/DeleteTrafficPolicyCommand.js +28 -0
- package/dist-cjs/commands/GetAddonInstanceCommand.js +28 -0
- package/dist-cjs/commands/GetAddonSubscriptionCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveExportCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveMessageCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveMessageContentCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveSearchCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveSearchResultsCommand.js +28 -0
- package/dist-cjs/commands/GetIngressPointCommand.js +28 -0
- package/dist-cjs/commands/GetRelayCommand.js +28 -0
- package/dist-cjs/commands/GetRuleSetCommand.js +29 -0
- package/dist-cjs/commands/GetTrafficPolicyCommand.js +28 -0
- package/dist-cjs/commands/ListAddonInstancesCommand.js +28 -0
- package/dist-cjs/commands/ListAddonSubscriptionsCommand.js +28 -0
- package/dist-cjs/commands/ListArchiveExportsCommand.js +28 -0
- package/dist-cjs/commands/ListArchiveSearchesCommand.js +28 -0
- package/dist-cjs/commands/ListArchivesCommand.js +28 -0
- package/dist-cjs/commands/ListIngressPointsCommand.js +28 -0
- package/dist-cjs/commands/ListRelaysCommand.js +28 -0
- package/dist-cjs/commands/ListRuleSetsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
- package/dist-cjs/commands/ListTrafficPoliciesCommand.js +28 -0
- package/dist-cjs/commands/StartArchiveExportCommand.js +28 -0
- package/dist-cjs/commands/StartArchiveSearchCommand.js +28 -0
- package/dist-cjs/commands/StopArchiveExportCommand.js +28 -0
- package/dist-cjs/commands/StopArchiveSearchCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +29 -0
- package/dist-cjs/commands/UntagResourceCommand.js +29 -0
- package/dist-cjs/commands/UpdateArchiveCommand.js +28 -0
- package/dist-cjs/commands/UpdateIngressPointCommand.js +29 -0
- package/dist-cjs/commands/UpdateRelayCommand.js +28 -0
- package/dist-cjs/commands/UpdateRuleSetCommand.js +29 -0
- package/dist-cjs/commands/UpdateTrafficPolicyCommand.js +28 -0
- package/dist-cjs/commands/index.js +50 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/MailManagerServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +582 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAddonInstancesPaginator.js +7 -0
- package/dist-cjs/pagination/ListAddonSubscriptionsPaginator.js +7 -0
- package/dist-cjs/pagination/ListArchiveExportsPaginator.js +7 -0
- package/dist-cjs/pagination/ListArchiveSearchesPaginator.js +7 -0
- package/dist-cjs/pagination/ListArchivesPaginator.js +7 -0
- package/dist-cjs/pagination/ListIngressPointsPaginator.js +7 -0
- package/dist-cjs/pagination/ListRelaysPaginator.js +7 -0
- package/dist-cjs/pagination/ListRuleSetsPaginator.js +7 -0
- package/dist-cjs/pagination/ListTrafficPoliciesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +13 -0
- package/dist-cjs/protocols/Aws_json1_0.js +1615 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/MailManager.js +101 -0
- package/dist-es/MailManagerClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateAddonInstanceCommand.js +25 -0
- package/dist-es/commands/CreateAddonSubscriptionCommand.js +25 -0
- package/dist-es/commands/CreateArchiveCommand.js +25 -0
- package/dist-es/commands/CreateIngressPointCommand.js +25 -0
- package/dist-es/commands/CreateRelayCommand.js +25 -0
- package/dist-es/commands/CreateRuleSetCommand.js +25 -0
- package/dist-es/commands/CreateTrafficPolicyCommand.js +25 -0
- package/dist-es/commands/DeleteAddonInstanceCommand.js +24 -0
- package/dist-es/commands/DeleteAddonSubscriptionCommand.js +24 -0
- package/dist-es/commands/DeleteArchiveCommand.js +24 -0
- package/dist-es/commands/DeleteIngressPointCommand.js +24 -0
- package/dist-es/commands/DeleteRelayCommand.js +24 -0
- package/dist-es/commands/DeleteRuleSetCommand.js +24 -0
- package/dist-es/commands/DeleteTrafficPolicyCommand.js +24 -0
- package/dist-es/commands/GetAddonInstanceCommand.js +24 -0
- package/dist-es/commands/GetAddonSubscriptionCommand.js +24 -0
- package/dist-es/commands/GetArchiveCommand.js +24 -0
- package/dist-es/commands/GetArchiveExportCommand.js +24 -0
- package/dist-es/commands/GetArchiveMessageCommand.js +24 -0
- package/dist-es/commands/GetArchiveMessageContentCommand.js +24 -0
- package/dist-es/commands/GetArchiveSearchCommand.js +24 -0
- package/dist-es/commands/GetArchiveSearchResultsCommand.js +24 -0
- package/dist-es/commands/GetIngressPointCommand.js +24 -0
- package/dist-es/commands/GetRelayCommand.js +24 -0
- package/dist-es/commands/GetRuleSetCommand.js +25 -0
- package/dist-es/commands/GetTrafficPolicyCommand.js +24 -0
- package/dist-es/commands/ListAddonInstancesCommand.js +24 -0
- package/dist-es/commands/ListAddonSubscriptionsCommand.js +24 -0
- package/dist-es/commands/ListArchiveExportsCommand.js +24 -0
- package/dist-es/commands/ListArchiveSearchesCommand.js +24 -0
- package/dist-es/commands/ListArchivesCommand.js +24 -0
- package/dist-es/commands/ListIngressPointsCommand.js +24 -0
- package/dist-es/commands/ListRelaysCommand.js +24 -0
- package/dist-es/commands/ListRuleSetsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
- package/dist-es/commands/ListTrafficPoliciesCommand.js +24 -0
- package/dist-es/commands/StartArchiveExportCommand.js +24 -0
- package/dist-es/commands/StartArchiveSearchCommand.js +24 -0
- package/dist-es/commands/StopArchiveExportCommand.js +24 -0
- package/dist-es/commands/StopArchiveSearchCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +25 -0
- package/dist-es/commands/UntagResourceCommand.js +25 -0
- package/dist-es/commands/UpdateArchiveCommand.js +24 -0
- package/dist-es/commands/UpdateIngressPointCommand.js +25 -0
- package/dist-es/commands/UpdateRelayCommand.js +24 -0
- package/dist-es/commands/UpdateRuleSetCommand.js +25 -0
- package/dist-es/commands/UpdateTrafficPolicyCommand.js +24 -0
- package/dist-es/commands/index.js +47 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/MailManagerServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +554 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAddonInstancesPaginator.js +4 -0
- package/dist-es/pagination/ListAddonSubscriptionsPaginator.js +4 -0
- package/dist-es/pagination/ListArchiveExportsPaginator.js +4 -0
- package/dist-es/pagination/ListArchiveSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListArchivesPaginator.js +4 -0
- package/dist-es/pagination/ListIngressPointsPaginator.js +4 -0
- package/dist-es/pagination/ListRelaysPaginator.js +4 -0
- package/dist-es/pagination/ListRuleSetsPaginator.js +4 -0
- package/dist-es/pagination/ListTrafficPoliciesPaginator.js +4 -0
- package/dist-es/pagination/index.js +10 -0
- package/dist-es/protocols/Aws_json1_0.js +1517 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/MailManager.d.ts +353 -0
- package/dist-types/MailManagerClient.d.ts +225 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateAddonInstanceCommand.d.ts +80 -0
- package/dist-types/commands/CreateAddonSubscriptionCommand.d.ts +77 -0
- package/dist-types/commands/CreateArchiveCommand.d.ts +85 -0
- package/dist-types/commands/CreateIngressPointCommand.d.ts +82 -0
- package/dist-types/commands/CreateRelayCommand.d.ts +82 -0
- package/dist-types/commands/CreateRuleSetCommand.d.ts +227 -0
- package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +120 -0
- package/dist-types/commands/DeleteAddonInstanceCommand.d.ts +63 -0
- package/dist-types/commands/DeleteAddonSubscriptionCommand.d.ts +63 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +73 -0
- package/dist-types/commands/DeleteIngressPointCommand.d.ts +66 -0
- package/dist-types/commands/DeleteRelayCommand.d.ts +66 -0
- package/dist-types/commands/DeleteRuleSetCommand.d.ts +63 -0
- package/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +66 -0
- package/dist-types/commands/GetAddonInstanceCommand.d.ts +68 -0
- package/dist-types/commands/GetAddonSubscriptionCommand.d.ts +67 -0
- package/dist-types/commands/GetArchiveCommand.d.ts +80 -0
- package/dist-types/commands/GetArchiveExportCommand.d.ts +122 -0
- package/dist-types/commands/GetArchiveMessageCommand.d.ts +70 -0
- package/dist-types/commands/GetArchiveMessageContentCommand.d.ts +74 -0
- package/dist-types/commands/GetArchiveSearchCommand.d.ts +117 -0
- package/dist-types/commands/GetArchiveSearchResultsCommand.d.ts +90 -0
- package/dist-types/commands/GetIngressPointCommand.d.ts +82 -0
- package/dist-types/commands/GetRelayCommand.d.ts +75 -0
- package/dist-types/commands/GetRuleSetCommand.d.ts +221 -0
- package/dist-types/commands/GetTrafficPolicyCommand.d.ts +114 -0
- package/dist-types/commands/ListAddonInstancesCommand.d.ts +72 -0
- package/dist-types/commands/ListAddonSubscriptionsCommand.d.ts +71 -0
- package/dist-types/commands/ListArchiveExportsCommand.d.ts +84 -0
- package/dist-types/commands/ListArchiveSearchesCommand.d.ts +84 -0
- package/dist-types/commands/ListArchivesCommand.d.ts +77 -0
- package/dist-types/commands/ListIngressPointsCommand.d.ts +72 -0
- package/dist-types/commands/ListRelaysCommand.d.ts +70 -0
- package/dist-types/commands/ListRuleSetsCommand.d.ts +70 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +70 -0
- package/dist-types/commands/ListTrafficPoliciesCommand.d.ts +70 -0
- package/dist-types/commands/StartArchiveExportCommand.d.ts +122 -0
- package/dist-types/commands/StartArchiveSearchCommand.d.ts +120 -0
- package/dist-types/commands/StopArchiveExportCommand.d.ts +66 -0
- package/dist-types/commands/StopArchiveSearchCommand.d.ts +66 -0
- package/dist-types/commands/TagResourceCommand.d.ts +75 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +69 -0
- package/dist-types/commands/UpdateArchiveCommand.d.ts +79 -0
- package/dist-types/commands/UpdateIngressPointCommand.d.ts +74 -0
- package/dist-types/commands/UpdateRelayCommand.d.ts +73 -0
- package/dist-types/commands/UpdateRuleSetCommand.d.ts +219 -0
- package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +112 -0
- package/dist-types/commands/index.d.ts +47 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +21 -0
- package/dist-types/models/MailManagerServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4046 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAddonInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAddonSubscriptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArchiveExportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArchiveSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArchivesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIngressPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRelaysPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRuleSetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTrafficPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +10 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +425 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/MailManager.d.ts +813 -0
- package/dist-types/ts3.4/MailManagerClient.d.ts +402 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAddonInstanceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateAddonSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateIngressPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAddonInstanceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAddonSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIngressPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetAddonInstanceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAddonSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetArchiveCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetArchiveExportCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetArchiveMessageCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetArchiveMessageContentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetArchiveSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetArchiveSearchResultsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIngressPointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetRuleSetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAddonInstancesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListAddonSubscriptionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListArchiveExportsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListArchiveSearchesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIngressPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRelaysCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListRuleSetsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartArchiveExportCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartArchiveSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StopArchiveExportCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StopArchiveSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateIngressPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTrafficPolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +47 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/MailManagerServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1514 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAddonInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAddonSubscriptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArchiveExportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArchiveSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArchivesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIngressPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRelaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRuleSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTrafficPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +569 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +103 -0
|
@@ -0,0 +1,120 @@
|
|
|
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 { StartArchiveSearchRequest, StartArchiveSearchResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link StartArchiveSearchCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface StartArchiveSearchCommandInput extends StartArchiveSearchRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link StartArchiveSearchCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface StartArchiveSearchCommandOutput extends StartArchiveSearchResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const StartArchiveSearchCommand_base: {
|
|
24
|
+
new (input: StartArchiveSearchCommandInput): import("@smithy/smithy-client").CommandImpl<StartArchiveSearchCommandInput, StartArchiveSearchCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartArchiveSearchCommandInput): import("@smithy/smithy-client").CommandImpl<StartArchiveSearchCommandInput, StartArchiveSearchCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Initiates a search across emails in the specified archive.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, StartArchiveSearchCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, StartArchiveSearchCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // StartArchiveSearchRequest
|
|
37
|
+
* ArchiveId: "STRING_VALUE", // required
|
|
38
|
+
* Filters: { // ArchiveFilters
|
|
39
|
+
* Include: [ // ArchiveFilterConditions
|
|
40
|
+
* { // ArchiveFilterCondition Union: only one key present
|
|
41
|
+
* StringExpression: { // ArchiveStringExpression
|
|
42
|
+
* Evaluate: { // ArchiveStringToEvaluate Union: only one key present
|
|
43
|
+
* Attribute: "TO" || "FROM" || "CC" || "SUBJECT",
|
|
44
|
+
* },
|
|
45
|
+
* Operator: "CONTAINS", // required
|
|
46
|
+
* Values: [ // StringValueList // required
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
49
|
+
* },
|
|
50
|
+
* BooleanExpression: { // ArchiveBooleanExpression
|
|
51
|
+
* Evaluate: { // ArchiveBooleanToEvaluate Union: only one key present
|
|
52
|
+
* Attribute: "HAS_ATTACHMENTS",
|
|
53
|
+
* },
|
|
54
|
+
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* Unless: [
|
|
59
|
+
* {// Union: only one key present
|
|
60
|
+
* StringExpression: {
|
|
61
|
+
* Evaluate: {// Union: only one key present
|
|
62
|
+
* Attribute: "TO" || "FROM" || "CC" || "SUBJECT",
|
|
63
|
+
* },
|
|
64
|
+
* Operator: "CONTAINS", // required
|
|
65
|
+
* Values: [ // required
|
|
66
|
+
* "STRING_VALUE",
|
|
67
|
+
* ],
|
|
68
|
+
* },
|
|
69
|
+
* BooleanExpression: {
|
|
70
|
+
* Evaluate: {// Union: only one key present
|
|
71
|
+
* Attribute: "HAS_ATTACHMENTS",
|
|
72
|
+
* },
|
|
73
|
+
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* ],
|
|
77
|
+
* },
|
|
78
|
+
* FromTimestamp: new Date("TIMESTAMP"), // required
|
|
79
|
+
* ToTimestamp: new Date("TIMESTAMP"), // required
|
|
80
|
+
* MaxResults: Number("int"), // required
|
|
81
|
+
* };
|
|
82
|
+
* const command = new StartArchiveSearchCommand(input);
|
|
83
|
+
* const response = await client.send(command);
|
|
84
|
+
* // { // StartArchiveSearchResponse
|
|
85
|
+
* // SearchId: "STRING_VALUE",
|
|
86
|
+
* // };
|
|
87
|
+
*
|
|
88
|
+
* ```
|
|
89
|
+
*
|
|
90
|
+
* @param StartArchiveSearchCommandInput - {@link StartArchiveSearchCommandInput}
|
|
91
|
+
* @returns {@link StartArchiveSearchCommandOutput}
|
|
92
|
+
* @see {@link StartArchiveSearchCommandInput} for command's `input` shape.
|
|
93
|
+
* @see {@link StartArchiveSearchCommandOutput} for command's `response` shape.
|
|
94
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
97
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ConflictException} (client fault)
|
|
100
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
103
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
106
|
+
* <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
109
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link ValidationException} (client fault)
|
|
112
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link MailManagerServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
116
|
+
*
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export declare class StartArchiveSearchCommand extends StartArchiveSearchCommand_base {
|
|
120
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
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 { StopArchiveExportRequest, StopArchiveExportResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link StopArchiveExportCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface StopArchiveExportCommandInput extends StopArchiveExportRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link StopArchiveExportCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface StopArchiveExportCommandOutput extends StopArchiveExportResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const StopArchiveExportCommand_base: {
|
|
24
|
+
new (input: StopArchiveExportCommandInput): import("@smithy/smithy-client").CommandImpl<StopArchiveExportCommandInput, StopArchiveExportCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopArchiveExportCommandInput): import("@smithy/smithy-client").CommandImpl<StopArchiveExportCommandInput, StopArchiveExportCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Stops an in-progress export of emails from an archive.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, StopArchiveExportCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, StopArchiveExportCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // StopArchiveExportRequest
|
|
37
|
+
* ExportId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new StopArchiveExportCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @param StopArchiveExportCommandInput - {@link StopArchiveExportCommandInput}
|
|
46
|
+
* @returns {@link StopArchiveExportCommandOutput}
|
|
47
|
+
* @see {@link StopArchiveExportCommandInput} for command's `input` shape.
|
|
48
|
+
* @see {@link StopArchiveExportCommandOutput} for command's `response` shape.
|
|
49
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
52
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link MailManagerServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
62
|
+
*
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export declare class StopArchiveExportCommand extends StopArchiveExportCommand_base {
|
|
66
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
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 { StopArchiveSearchRequest, StopArchiveSearchResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link StopArchiveSearchCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface StopArchiveSearchCommandInput extends StopArchiveSearchRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link StopArchiveSearchCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface StopArchiveSearchCommandOutput extends StopArchiveSearchResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const StopArchiveSearchCommand_base: {
|
|
24
|
+
new (input: StopArchiveSearchCommandInput): import("@smithy/smithy-client").CommandImpl<StopArchiveSearchCommandInput, StopArchiveSearchCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopArchiveSearchCommandInput): import("@smithy/smithy-client").CommandImpl<StopArchiveSearchCommandInput, StopArchiveSearchCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Stops an in-progress archive search job.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, StopArchiveSearchCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, StopArchiveSearchCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // StopArchiveSearchRequest
|
|
37
|
+
* SearchId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new StopArchiveSearchCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @param StopArchiveSearchCommandInput - {@link StopArchiveSearchCommandInput}
|
|
46
|
+
* @returns {@link StopArchiveSearchCommandOutput}
|
|
47
|
+
* @see {@link StopArchiveSearchCommandInput} for command's `input` shape.
|
|
48
|
+
* @see {@link StopArchiveSearchCommandOutput} for command's `response` shape.
|
|
49
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
52
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link MailManagerServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
62
|
+
*
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export declare class StopArchiveSearchCommand extends StopArchiveSearchCommand_base {
|
|
66
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link TagResourceCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const TagResourceCommand_base: {
|
|
24
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p> Adds one or more tags (keys and values) to a specified resource. </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, TagResourceCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, TagResourceCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // TagResourceRequest
|
|
37
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
38
|
+
* Tags: [ // TagList // required
|
|
39
|
+
* { // Tag
|
|
40
|
+
* Key: "STRING_VALUE", // required
|
|
41
|
+
* Value: "STRING_VALUE", // required
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
45
|
+
* const command = new TagResourceCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
52
|
+
* @returns {@link TagResourceCommandOutput}
|
|
53
|
+
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
64
|
+
* <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link MailManagerServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
71
|
+
*
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
75
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UntagResourceCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UntagResourceCommand_base: {
|
|
24
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p> Remove one or more tags (keys and values) from a specified resource. </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, UntagResourceCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, UntagResourceCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // UntagResourceRequest
|
|
37
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
38
|
+
* TagKeys: [ // TagKeyList // required
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
42
|
+
* const command = new UntagResourceCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
49
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
50
|
+
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ConflictException} (client fault)
|
|
55
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ValidationException} (client fault)
|
|
61
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link MailManagerServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
65
|
+
*
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
69
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
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 { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UpdateArchiveCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateArchiveCommandInput extends UpdateArchiveRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UpdateArchiveCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UpdateArchiveCommand_base: {
|
|
24
|
+
new (input: UpdateArchiveCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateArchiveCommandInput, UpdateArchiveCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateArchiveCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateArchiveCommandInput, UpdateArchiveCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Updates the attributes of an existing email archive.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, UpdateArchiveCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, UpdateArchiveCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // UpdateArchiveRequest
|
|
37
|
+
* ArchiveId: "STRING_VALUE", // required
|
|
38
|
+
* ArchiveName: "STRING_VALUE",
|
|
39
|
+
* Retention: { // ArchiveRetention Union: only one key present
|
|
40
|
+
* RetentionPeriod: "THREE_MONTHS" || "SIX_MONTHS" || "NINE_MONTHS" || "ONE_YEAR" || "EIGHTEEN_MONTHS" || "TWO_YEARS" || "THIRTY_MONTHS" || "THREE_YEARS" || "FOUR_YEARS" || "FIVE_YEARS" || "SIX_YEARS" || "SEVEN_YEARS" || "EIGHT_YEARS" || "NINE_YEARS" || "TEN_YEARS" || "PERMANENT",
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
43
|
+
* const command = new UpdateArchiveCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param UpdateArchiveCommandInput - {@link UpdateArchiveCommandInput}
|
|
50
|
+
* @returns {@link UpdateArchiveCommandOutput}
|
|
51
|
+
* @see {@link UpdateArchiveCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link UpdateArchiveCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>Occurs when a user is denied access to a specific resource or action.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ConflictException} (client fault)
|
|
59
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
62
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
65
|
+
* <p>Occurs when an operation exceeds a predefined service quota or limit.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link MailManagerServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class UpdateArchiveCommand extends UpdateArchiveCommand_base {
|
|
79
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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 { UpdateIngressPointRequest, UpdateIngressPointResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UpdateIngressPointCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateIngressPointCommandInput extends UpdateIngressPointRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UpdateIngressPointCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateIngressPointCommandOutput extends UpdateIngressPointResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UpdateIngressPointCommand_base: {
|
|
24
|
+
new (input: UpdateIngressPointCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIngressPointCommandInput, UpdateIngressPointCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateIngressPointCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIngressPointCommandInput, UpdateIngressPointCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Update attributes of a provisioned ingress endpoint resource.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, UpdateIngressPointCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, UpdateIngressPointCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // UpdateIngressPointRequest
|
|
37
|
+
* IngressPointId: "STRING_VALUE", // required
|
|
38
|
+
* IngressPointName: "STRING_VALUE",
|
|
39
|
+
* StatusToUpdate: "ACTIVE" || "CLOSED",
|
|
40
|
+
* RuleSetId: "STRING_VALUE",
|
|
41
|
+
* TrafficPolicyId: "STRING_VALUE",
|
|
42
|
+
* IngressPointConfiguration: { // IngressPointConfiguration Union: only one key present
|
|
43
|
+
* SmtpPassword: "STRING_VALUE",
|
|
44
|
+
* SecretArn: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
47
|
+
* const command = new UpdateIngressPointCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // {};
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param UpdateIngressPointCommandInput - {@link UpdateIngressPointCommandInput}
|
|
54
|
+
* @returns {@link UpdateIngressPointCommandOutput}
|
|
55
|
+
* @see {@link UpdateIngressPointCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link UpdateIngressPointCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
|
+
* <p>Occurs when a requested resource is not found.</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 UpdateIngressPointCommand extends UpdateIngressPointCommand_base {
|
|
74
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
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 { UpdateRelayRequest, UpdateRelayResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UpdateRelayCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateRelayCommandInput extends UpdateRelayRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UpdateRelayCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateRelayCommandOutput extends UpdateRelayResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UpdateRelayCommand_base: {
|
|
24
|
+
new (input: UpdateRelayCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRelayCommandInput, UpdateRelayCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateRelayCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRelayCommandInput, UpdateRelayCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Updates the attributes of an existing relay resource.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, UpdateRelayCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, UpdateRelayCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // UpdateRelayRequest
|
|
37
|
+
* RelayId: "STRING_VALUE", // required
|
|
38
|
+
* RelayName: "STRING_VALUE",
|
|
39
|
+
* ServerName: "STRING_VALUE",
|
|
40
|
+
* ServerPort: Number("int"),
|
|
41
|
+
* Authentication: { // RelayAuthentication Union: only one key present
|
|
42
|
+
* SecretArn: "STRING_VALUE",
|
|
43
|
+
* NoAuthentication: {},
|
|
44
|
+
* },
|
|
45
|
+
* };
|
|
46
|
+
* const command = new UpdateRelayCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // {};
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param UpdateRelayCommandInput - {@link UpdateRelayCommandInput}
|
|
53
|
+
* @returns {@link UpdateRelayCommandOutput}
|
|
54
|
+
* @see {@link UpdateRelayCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link UpdateRelayCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ConflictException} (client fault)
|
|
59
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
62
|
+
* <p>Occurs when a requested resource is not found.</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 UpdateRelayCommand extends UpdateRelayCommand_base {
|
|
73
|
+
}
|