@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,219 @@
|
|
|
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 { UpdateRuleSetRequest, UpdateRuleSetResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UpdateRuleSetCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateRuleSetCommandInput extends UpdateRuleSetRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UpdateRuleSetCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateRuleSetCommandOutput extends UpdateRuleSetResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UpdateRuleSetCommand_base: {
|
|
24
|
+
new (input: UpdateRuleSetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRuleSetCommandInput, UpdateRuleSetCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateRuleSetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRuleSetCommandInput, UpdateRuleSetCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>>Update attributes of an already provisioned rule set.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MailManagerClient, UpdateRuleSetCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, UpdateRuleSetCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // UpdateRuleSetRequest
|
|
37
|
+
* RuleSetId: "STRING_VALUE", // required
|
|
38
|
+
* RuleSetName: "STRING_VALUE",
|
|
39
|
+
* Rules: [ // Rules
|
|
40
|
+
* { // Rule
|
|
41
|
+
* Name: "STRING_VALUE",
|
|
42
|
+
* Conditions: [ // RuleConditions
|
|
43
|
+
* { // RuleCondition Union: only one key present
|
|
44
|
+
* BooleanExpression: { // RuleBooleanExpression
|
|
45
|
+
* Evaluate: { // RuleBooleanToEvaluate Union: only one key present
|
|
46
|
+
* Attribute: "READ_RECEIPT_REQUESTED" || "TLS" || "TLS_WRAPPED",
|
|
47
|
+
* },
|
|
48
|
+
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
49
|
+
* },
|
|
50
|
+
* StringExpression: { // RuleStringExpression
|
|
51
|
+
* Evaluate: { // RuleStringToEvaluate Union: only one key present
|
|
52
|
+
* Attribute: "MAIL_FROM" || "HELO" || "RECIPIENT" || "SENDER" || "FROM" || "SUBJECT" || "TO" || "CC",
|
|
53
|
+
* },
|
|
54
|
+
* Operator: "EQUALS" || "NOT_EQUALS" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS", // required
|
|
55
|
+
* Values: [ // RuleStringList // required
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
59
|
+
* NumberExpression: { // RuleNumberExpression
|
|
60
|
+
* Evaluate: { // RuleNumberToEvaluate Union: only one key present
|
|
61
|
+
* Attribute: "MESSAGE_SIZE",
|
|
62
|
+
* },
|
|
63
|
+
* Operator: "EQUALS" || "NOT_EQUALS" || "LESS_THAN" || "GREATER_THAN" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN_OR_EQUAL", // required
|
|
64
|
+
* Value: Number("double"), // required
|
|
65
|
+
* },
|
|
66
|
+
* IpExpression: { // RuleIpExpression
|
|
67
|
+
* Evaluate: { // RuleIpToEvaluate Union: only one key present
|
|
68
|
+
* Attribute: "SOURCE_IP",
|
|
69
|
+
* },
|
|
70
|
+
* Operator: "CIDR_MATCHES" || "NOT_CIDR_MATCHES", // required
|
|
71
|
+
* Values: [ // RuleIpValueList // required
|
|
72
|
+
* "STRING_VALUE",
|
|
73
|
+
* ],
|
|
74
|
+
* },
|
|
75
|
+
* VerdictExpression: { // RuleVerdictExpression
|
|
76
|
+
* Evaluate: { // RuleVerdictToEvaluate Union: only one key present
|
|
77
|
+
* Attribute: "SPF" || "DKIM",
|
|
78
|
+
* Analysis: { // Analysis
|
|
79
|
+
* Analyzer: "STRING_VALUE", // required
|
|
80
|
+
* ResultField: "STRING_VALUE", // required
|
|
81
|
+
* },
|
|
82
|
+
* },
|
|
83
|
+
* Operator: "EQUALS" || "NOT_EQUALS", // required
|
|
84
|
+
* Values: [ // RuleVerdictValueList // required
|
|
85
|
+
* "PASS" || "FAIL" || "GRAY" || "PROCESSING_FAILED",
|
|
86
|
+
* ],
|
|
87
|
+
* },
|
|
88
|
+
* DmarcExpression: { // RuleDmarcExpression
|
|
89
|
+
* Operator: "EQUALS" || "NOT_EQUALS", // required
|
|
90
|
+
* Values: [ // RuleDmarcValueList // required
|
|
91
|
+
* "NONE" || "QUARANTINE" || "REJECT",
|
|
92
|
+
* ],
|
|
93
|
+
* },
|
|
94
|
+
* },
|
|
95
|
+
* ],
|
|
96
|
+
* Unless: [
|
|
97
|
+
* {// Union: only one key present
|
|
98
|
+
* BooleanExpression: {
|
|
99
|
+
* Evaluate: {// Union: only one key present
|
|
100
|
+
* Attribute: "READ_RECEIPT_REQUESTED" || "TLS" || "TLS_WRAPPED",
|
|
101
|
+
* },
|
|
102
|
+
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
103
|
+
* },
|
|
104
|
+
* StringExpression: {
|
|
105
|
+
* Evaluate: {// Union: only one key present
|
|
106
|
+
* Attribute: "MAIL_FROM" || "HELO" || "RECIPIENT" || "SENDER" || "FROM" || "SUBJECT" || "TO" || "CC",
|
|
107
|
+
* },
|
|
108
|
+
* Operator: "EQUALS" || "NOT_EQUALS" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS", // required
|
|
109
|
+
* Values: [ // required
|
|
110
|
+
* "STRING_VALUE",
|
|
111
|
+
* ],
|
|
112
|
+
* },
|
|
113
|
+
* NumberExpression: {
|
|
114
|
+
* Evaluate: {// Union: only one key present
|
|
115
|
+
* Attribute: "MESSAGE_SIZE",
|
|
116
|
+
* },
|
|
117
|
+
* Operator: "EQUALS" || "NOT_EQUALS" || "LESS_THAN" || "GREATER_THAN" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN_OR_EQUAL", // required
|
|
118
|
+
* Value: Number("double"), // required
|
|
119
|
+
* },
|
|
120
|
+
* IpExpression: {
|
|
121
|
+
* Evaluate: {// Union: only one key present
|
|
122
|
+
* Attribute: "SOURCE_IP",
|
|
123
|
+
* },
|
|
124
|
+
* Operator: "CIDR_MATCHES" || "NOT_CIDR_MATCHES", // required
|
|
125
|
+
* Values: [ // required
|
|
126
|
+
* "STRING_VALUE",
|
|
127
|
+
* ],
|
|
128
|
+
* },
|
|
129
|
+
* VerdictExpression: {
|
|
130
|
+
* Evaluate: {// Union: only one key present
|
|
131
|
+
* Attribute: "SPF" || "DKIM",
|
|
132
|
+
* Analysis: {
|
|
133
|
+
* Analyzer: "STRING_VALUE", // required
|
|
134
|
+
* ResultField: "STRING_VALUE", // required
|
|
135
|
+
* },
|
|
136
|
+
* },
|
|
137
|
+
* Operator: "EQUALS" || "NOT_EQUALS", // required
|
|
138
|
+
* Values: [ // required
|
|
139
|
+
* "PASS" || "FAIL" || "GRAY" || "PROCESSING_FAILED",
|
|
140
|
+
* ],
|
|
141
|
+
* },
|
|
142
|
+
* DmarcExpression: {
|
|
143
|
+
* Operator: "EQUALS" || "NOT_EQUALS", // required
|
|
144
|
+
* Values: [ // required
|
|
145
|
+
* "NONE" || "QUARANTINE" || "REJECT",
|
|
146
|
+
* ],
|
|
147
|
+
* },
|
|
148
|
+
* },
|
|
149
|
+
* ],
|
|
150
|
+
* Actions: [ // RuleActions // required
|
|
151
|
+
* { // RuleAction Union: only one key present
|
|
152
|
+
* Drop: {},
|
|
153
|
+
* Relay: { // RelayAction
|
|
154
|
+
* ActionFailurePolicy: "CONTINUE" || "DROP",
|
|
155
|
+
* Relay: "STRING_VALUE", // required
|
|
156
|
+
* MailFrom: "REPLACE" || "PRESERVE",
|
|
157
|
+
* },
|
|
158
|
+
* Archive: { // ArchiveAction
|
|
159
|
+
* ActionFailurePolicy: "CONTINUE" || "DROP",
|
|
160
|
+
* TargetArchive: "STRING_VALUE", // required
|
|
161
|
+
* },
|
|
162
|
+
* WriteToS3: { // S3Action
|
|
163
|
+
* ActionFailurePolicy: "CONTINUE" || "DROP",
|
|
164
|
+
* RoleArn: "STRING_VALUE", // required
|
|
165
|
+
* S3Bucket: "STRING_VALUE", // required
|
|
166
|
+
* S3Prefix: "STRING_VALUE",
|
|
167
|
+
* S3SseKmsKeyId: "STRING_VALUE",
|
|
168
|
+
* },
|
|
169
|
+
* Send: { // SendAction
|
|
170
|
+
* ActionFailurePolicy: "CONTINUE" || "DROP",
|
|
171
|
+
* RoleArn: "STRING_VALUE", // required
|
|
172
|
+
* },
|
|
173
|
+
* AddHeader: { // AddHeaderAction
|
|
174
|
+
* HeaderName: "STRING_VALUE", // required
|
|
175
|
+
* HeaderValue: "STRING_VALUE", // required
|
|
176
|
+
* },
|
|
177
|
+
* ReplaceRecipient: { // ReplaceRecipientAction
|
|
178
|
+
* ReplaceWith: [ // Recipients
|
|
179
|
+
* "STRING_VALUE",
|
|
180
|
+
* ],
|
|
181
|
+
* },
|
|
182
|
+
* DeliverToMailbox: { // DeliverToMailboxAction
|
|
183
|
+
* ActionFailurePolicy: "CONTINUE" || "DROP",
|
|
184
|
+
* MailboxArn: "STRING_VALUE", // required
|
|
185
|
+
* RoleArn: "STRING_VALUE", // required
|
|
186
|
+
* },
|
|
187
|
+
* },
|
|
188
|
+
* ],
|
|
189
|
+
* },
|
|
190
|
+
* ],
|
|
191
|
+
* };
|
|
192
|
+
* const command = new UpdateRuleSetCommand(input);
|
|
193
|
+
* const response = await client.send(command);
|
|
194
|
+
* // {};
|
|
195
|
+
*
|
|
196
|
+
* ```
|
|
197
|
+
*
|
|
198
|
+
* @param UpdateRuleSetCommandInput - {@link UpdateRuleSetCommandInput}
|
|
199
|
+
* @returns {@link UpdateRuleSetCommandOutput}
|
|
200
|
+
* @see {@link UpdateRuleSetCommandInput} for command's `input` shape.
|
|
201
|
+
* @see {@link UpdateRuleSetCommandOutput} for command's `response` shape.
|
|
202
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
203
|
+
*
|
|
204
|
+
* @throws {@link ConflictException} (client fault)
|
|
205
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
206
|
+
*
|
|
207
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
208
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
209
|
+
*
|
|
210
|
+
* @throws {@link ValidationException} (client fault)
|
|
211
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
212
|
+
*
|
|
213
|
+
* @throws {@link MailManagerServiceException}
|
|
214
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
215
|
+
*
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export declare class UpdateRuleSetCommand extends UpdateRuleSetCommand_base {
|
|
219
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
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 { UpdateTrafficPolicyRequest, UpdateTrafficPolicyResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link UpdateTrafficPolicyCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateTrafficPolicyCommandInput extends UpdateTrafficPolicyRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link UpdateTrafficPolicyCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateTrafficPolicyCommandOutput extends UpdateTrafficPolicyResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const UpdateTrafficPolicyCommand_base: {
|
|
24
|
+
new (input: UpdateTrafficPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateTrafficPolicyCommandInput, UpdateTrafficPolicyCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateTrafficPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateTrafficPolicyCommandInput, UpdateTrafficPolicyCommandOutput, MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Update attributes of an already provisioned traffic policy 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, UpdateTrafficPolicyCommand } from "@aws-sdk/client-mailmanager"; // ES Modules import
|
|
34
|
+
* // const { MailManagerClient, UpdateTrafficPolicyCommand } = require("@aws-sdk/client-mailmanager"); // CommonJS import
|
|
35
|
+
* const client = new MailManagerClient(config);
|
|
36
|
+
* const input = { // UpdateTrafficPolicyRequest
|
|
37
|
+
* TrafficPolicyId: "STRING_VALUE", // required
|
|
38
|
+
* TrafficPolicyName: "STRING_VALUE",
|
|
39
|
+
* PolicyStatements: [ // PolicyStatementList
|
|
40
|
+
* { // PolicyStatement
|
|
41
|
+
* Conditions: [ // PolicyConditions // required
|
|
42
|
+
* { // PolicyCondition Union: only one key present
|
|
43
|
+
* StringExpression: { // IngressStringExpression
|
|
44
|
+
* Evaluate: { // IngressStringToEvaluate Union: only one key present
|
|
45
|
+
* Attribute: "RECIPIENT",
|
|
46
|
+
* },
|
|
47
|
+
* Operator: "EQUALS" || "NOT_EQUALS" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS", // required
|
|
48
|
+
* Values: [ // StringList // required
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* IpExpression: { // IngressIpv4Expression
|
|
53
|
+
* Evaluate: { // IngressIpToEvaluate Union: only one key present
|
|
54
|
+
* Attribute: "SENDER_IP",
|
|
55
|
+
* },
|
|
56
|
+
* Operator: "CIDR_MATCHES" || "NOT_CIDR_MATCHES", // required
|
|
57
|
+
* Values: [ // Ipv4Cidrs // required
|
|
58
|
+
* "STRING_VALUE",
|
|
59
|
+
* ],
|
|
60
|
+
* },
|
|
61
|
+
* TlsExpression: { // IngressTlsProtocolExpression
|
|
62
|
+
* Evaluate: { // IngressTlsProtocolToEvaluate Union: only one key present
|
|
63
|
+
* Attribute: "TLS_PROTOCOL",
|
|
64
|
+
* },
|
|
65
|
+
* Operator: "MINIMUM_TLS_VERSION" || "IS", // required
|
|
66
|
+
* Value: "TLS1_2" || "TLS1_3", // required
|
|
67
|
+
* },
|
|
68
|
+
* BooleanExpression: { // IngressBooleanExpression
|
|
69
|
+
* Evaluate: { // IngressBooleanToEvaluate Union: only one key present
|
|
70
|
+
* Analysis: { // IngressAnalysis
|
|
71
|
+
* Analyzer: "STRING_VALUE", // required
|
|
72
|
+
* ResultField: "STRING_VALUE", // required
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* Operator: "IS_TRUE" || "IS_FALSE", // required
|
|
76
|
+
* },
|
|
77
|
+
* },
|
|
78
|
+
* ],
|
|
79
|
+
* Action: "ALLOW" || "DENY", // required
|
|
80
|
+
* },
|
|
81
|
+
* ],
|
|
82
|
+
* DefaultAction: "ALLOW" || "DENY",
|
|
83
|
+
* MaxMessageSizeBytes: Number("int"),
|
|
84
|
+
* };
|
|
85
|
+
* const command = new UpdateTrafficPolicyCommand(input);
|
|
86
|
+
* const response = await client.send(command);
|
|
87
|
+
* // {};
|
|
88
|
+
*
|
|
89
|
+
* ```
|
|
90
|
+
*
|
|
91
|
+
* @param UpdateTrafficPolicyCommandInput - {@link UpdateTrafficPolicyCommandInput}
|
|
92
|
+
* @returns {@link UpdateTrafficPolicyCommandOutput}
|
|
93
|
+
* @see {@link UpdateTrafficPolicyCommandInput} for command's `input` shape.
|
|
94
|
+
* @see {@link UpdateTrafficPolicyCommandOutput} for command's `response` shape.
|
|
95
|
+
* @see {@link MailManagerClientResolvedConfig | config} for MailManagerClient's `config` shape.
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ConflictException} (client fault)
|
|
98
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
101
|
+
* <p>Occurs when a requested resource is not found.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ValidationException} (client fault)
|
|
104
|
+
* <p>The request validation has failed. For details, see the accompanying error message.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link MailManagerServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from MailManager service.</p>
|
|
108
|
+
*
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class UpdateTrafficPolicyCommand extends UpdateTrafficPolicyCommand_base {
|
|
112
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export * from "./CreateAddonInstanceCommand";
|
|
2
|
+
export * from "./CreateAddonSubscriptionCommand";
|
|
3
|
+
export * from "./CreateArchiveCommand";
|
|
4
|
+
export * from "./CreateIngressPointCommand";
|
|
5
|
+
export * from "./CreateRelayCommand";
|
|
6
|
+
export * from "./CreateRuleSetCommand";
|
|
7
|
+
export * from "./CreateTrafficPolicyCommand";
|
|
8
|
+
export * from "./DeleteAddonInstanceCommand";
|
|
9
|
+
export * from "./DeleteAddonSubscriptionCommand";
|
|
10
|
+
export * from "./DeleteArchiveCommand";
|
|
11
|
+
export * from "./DeleteIngressPointCommand";
|
|
12
|
+
export * from "./DeleteRelayCommand";
|
|
13
|
+
export * from "./DeleteRuleSetCommand";
|
|
14
|
+
export * from "./DeleteTrafficPolicyCommand";
|
|
15
|
+
export * from "./GetAddonInstanceCommand";
|
|
16
|
+
export * from "./GetAddonSubscriptionCommand";
|
|
17
|
+
export * from "./GetArchiveCommand";
|
|
18
|
+
export * from "./GetArchiveExportCommand";
|
|
19
|
+
export * from "./GetArchiveMessageCommand";
|
|
20
|
+
export * from "./GetArchiveMessageContentCommand";
|
|
21
|
+
export * from "./GetArchiveSearchCommand";
|
|
22
|
+
export * from "./GetArchiveSearchResultsCommand";
|
|
23
|
+
export * from "./GetIngressPointCommand";
|
|
24
|
+
export * from "./GetRelayCommand";
|
|
25
|
+
export * from "./GetRuleSetCommand";
|
|
26
|
+
export * from "./GetTrafficPolicyCommand";
|
|
27
|
+
export * from "./ListAddonInstancesCommand";
|
|
28
|
+
export * from "./ListAddonSubscriptionsCommand";
|
|
29
|
+
export * from "./ListArchiveExportsCommand";
|
|
30
|
+
export * from "./ListArchiveSearchesCommand";
|
|
31
|
+
export * from "./ListArchivesCommand";
|
|
32
|
+
export * from "./ListIngressPointsCommand";
|
|
33
|
+
export * from "./ListRelaysCommand";
|
|
34
|
+
export * from "./ListRuleSetsCommand";
|
|
35
|
+
export * from "./ListTagsForResourceCommand";
|
|
36
|
+
export * from "./ListTrafficPoliciesCommand";
|
|
37
|
+
export * from "./StartArchiveExportCommand";
|
|
38
|
+
export * from "./StartArchiveSearchCommand";
|
|
39
|
+
export * from "./StopArchiveExportCommand";
|
|
40
|
+
export * from "./StopArchiveSearchCommand";
|
|
41
|
+
export * from "./TagResourceCommand";
|
|
42
|
+
export * from "./UntagResourceCommand";
|
|
43
|
+
export * from "./UpdateArchiveCommand";
|
|
44
|
+
export * from "./UpdateIngressPointCommand";
|
|
45
|
+
export * from "./UpdateRelayCommand";
|
|
46
|
+
export * from "./UpdateRuleSetCommand";
|
|
47
|
+
export * from "./UpdateTrafficPolicyCommand";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
|
+
}
|
|
11
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
|
+
defaultSigningName: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
36
|
+
Region?: string;
|
|
37
|
+
UseDualStack?: boolean;
|
|
38
|
+
UseFIPS?: boolean;
|
|
39
|
+
Endpoint?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export interface MailManagerExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
|
|
9
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* <fullname>AWS SES Mail Manager API</fullname>
|
|
3
|
+
* <p>
|
|
4
|
+
* <a href="http://aws.amazon.com/ses">AWS SES Mail Manager API</a> contains operations and data types
|
|
5
|
+
* that comprise the Mail Manager feature of Amazon Simple Email Service.</p>
|
|
6
|
+
* <p>Mail Manager is a set of Amazon SES email gateway features designed to help you strengthen
|
|
7
|
+
* your organization's email infrastructure, simplify email workflow management, and
|
|
8
|
+
* streamline email compliance control. To learn more, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/eb.html">Mail Manager chapter</a> in the Amazon SES Developer
|
|
9
|
+
* Guide.</p>
|
|
10
|
+
*
|
|
11
|
+
* @packageDocumentation
|
|
12
|
+
*/
|
|
13
|
+
export * from "./MailManagerClient";
|
|
14
|
+
export * from "./MailManager";
|
|
15
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
16
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
17
|
+
export { MailManagerExtensionConfiguration } from "./extensionConfiguration";
|
|
18
|
+
export * from "./commands";
|
|
19
|
+
export * from "./pagination";
|
|
20
|
+
export * from "./models";
|
|
21
|
+
export { MailManagerServiceException } from "./models/MailManagerServiceException";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*
|
|
6
|
+
* Base exception class for all service exceptions from MailManager service.
|
|
7
|
+
*/
|
|
8
|
+
export declare class MailManagerServiceException extends __ServiceException {
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(options: __ServiceExceptionOptions);
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|