@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,554 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
import { MailManagerServiceException as __BaseException } from "./MailManagerServiceException";
|
|
3
|
+
export const AcceptAction = {
|
|
4
|
+
ALLOW: "ALLOW",
|
|
5
|
+
DENY: "DENY",
|
|
6
|
+
};
|
|
7
|
+
export class AccessDeniedException extends __BaseException {
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "AccessDeniedException",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts,
|
|
13
|
+
});
|
|
14
|
+
this.name = "AccessDeniedException";
|
|
15
|
+
this.$fault = "client";
|
|
16
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
17
|
+
this.Message = opts.Message;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export const ActionFailurePolicy = {
|
|
21
|
+
CONTINUE: "CONTINUE",
|
|
22
|
+
DROP: "DROP",
|
|
23
|
+
};
|
|
24
|
+
export class ConflictException extends __BaseException {
|
|
25
|
+
constructor(opts) {
|
|
26
|
+
super({
|
|
27
|
+
name: "ConflictException",
|
|
28
|
+
$fault: "client",
|
|
29
|
+
...opts,
|
|
30
|
+
});
|
|
31
|
+
this.name = "ConflictException";
|
|
32
|
+
this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
34
|
+
this.Message = opts.Message;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
38
|
+
constructor(opts) {
|
|
39
|
+
super({
|
|
40
|
+
name: "ResourceNotFoundException",
|
|
41
|
+
$fault: "client",
|
|
42
|
+
...opts,
|
|
43
|
+
});
|
|
44
|
+
this.name = "ResourceNotFoundException";
|
|
45
|
+
this.$fault = "client";
|
|
46
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
47
|
+
this.Message = opts.Message;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
51
|
+
constructor(opts) {
|
|
52
|
+
super({
|
|
53
|
+
name: "ServiceQuotaExceededException",
|
|
54
|
+
$fault: "client",
|
|
55
|
+
...opts,
|
|
56
|
+
});
|
|
57
|
+
this.name = "ServiceQuotaExceededException";
|
|
58
|
+
this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
60
|
+
this.Message = opts.Message;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
export class ValidationException extends __BaseException {
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "ValidationException",
|
|
67
|
+
$fault: "client",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
this.name = "ValidationException";
|
|
71
|
+
this.$fault = "client";
|
|
72
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
73
|
+
this.Message = opts.Message;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
export const ArchiveState = {
|
|
77
|
+
ACTIVE: "ACTIVE",
|
|
78
|
+
PENDING_DELETION: "PENDING_DELETION",
|
|
79
|
+
};
|
|
80
|
+
export const ArchiveBooleanEmailAttribute = {
|
|
81
|
+
HAS_ATTACHMENTS: "HAS_ATTACHMENTS",
|
|
82
|
+
};
|
|
83
|
+
export var ArchiveBooleanToEvaluate;
|
|
84
|
+
(function (ArchiveBooleanToEvaluate) {
|
|
85
|
+
ArchiveBooleanToEvaluate.visit = (value, visitor) => {
|
|
86
|
+
if (value.Attribute !== undefined)
|
|
87
|
+
return visitor.Attribute(value.Attribute);
|
|
88
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
89
|
+
};
|
|
90
|
+
})(ArchiveBooleanToEvaluate || (ArchiveBooleanToEvaluate = {}));
|
|
91
|
+
export const ArchiveBooleanOperator = {
|
|
92
|
+
IS_FALSE: "IS_FALSE",
|
|
93
|
+
IS_TRUE: "IS_TRUE",
|
|
94
|
+
};
|
|
95
|
+
export const ArchiveStringEmailAttribute = {
|
|
96
|
+
CC: "CC",
|
|
97
|
+
FROM: "FROM",
|
|
98
|
+
SUBJECT: "SUBJECT",
|
|
99
|
+
TO: "TO",
|
|
100
|
+
};
|
|
101
|
+
export var ArchiveStringToEvaluate;
|
|
102
|
+
(function (ArchiveStringToEvaluate) {
|
|
103
|
+
ArchiveStringToEvaluate.visit = (value, visitor) => {
|
|
104
|
+
if (value.Attribute !== undefined)
|
|
105
|
+
return visitor.Attribute(value.Attribute);
|
|
106
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
107
|
+
};
|
|
108
|
+
})(ArchiveStringToEvaluate || (ArchiveStringToEvaluate = {}));
|
|
109
|
+
export const ArchiveStringOperator = {
|
|
110
|
+
CONTAINS: "CONTAINS",
|
|
111
|
+
};
|
|
112
|
+
export var ArchiveFilterCondition;
|
|
113
|
+
(function (ArchiveFilterCondition) {
|
|
114
|
+
ArchiveFilterCondition.visit = (value, visitor) => {
|
|
115
|
+
if (value.StringExpression !== undefined)
|
|
116
|
+
return visitor.StringExpression(value.StringExpression);
|
|
117
|
+
if (value.BooleanExpression !== undefined)
|
|
118
|
+
return visitor.BooleanExpression(value.BooleanExpression);
|
|
119
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
120
|
+
};
|
|
121
|
+
})(ArchiveFilterCondition || (ArchiveFilterCondition = {}));
|
|
122
|
+
export const RetentionPeriod = {
|
|
123
|
+
EIGHTEEN_MONTHS: "EIGHTEEN_MONTHS",
|
|
124
|
+
EIGHT_YEARS: "EIGHT_YEARS",
|
|
125
|
+
FIVE_YEARS: "FIVE_YEARS",
|
|
126
|
+
FOUR_YEARS: "FOUR_YEARS",
|
|
127
|
+
NINE_MONTHS: "NINE_MONTHS",
|
|
128
|
+
NINE_YEARS: "NINE_YEARS",
|
|
129
|
+
ONE_YEAR: "ONE_YEAR",
|
|
130
|
+
PERMANENT: "PERMANENT",
|
|
131
|
+
SEVEN_YEARS: "SEVEN_YEARS",
|
|
132
|
+
SIX_MONTHS: "SIX_MONTHS",
|
|
133
|
+
SIX_YEARS: "SIX_YEARS",
|
|
134
|
+
TEN_YEARS: "TEN_YEARS",
|
|
135
|
+
THIRTY_MONTHS: "THIRTY_MONTHS",
|
|
136
|
+
THREE_MONTHS: "THREE_MONTHS",
|
|
137
|
+
THREE_YEARS: "THREE_YEARS",
|
|
138
|
+
TWO_YEARS: "TWO_YEARS",
|
|
139
|
+
};
|
|
140
|
+
export var ArchiveRetention;
|
|
141
|
+
(function (ArchiveRetention) {
|
|
142
|
+
ArchiveRetention.visit = (value, visitor) => {
|
|
143
|
+
if (value.RetentionPeriod !== undefined)
|
|
144
|
+
return visitor.RetentionPeriod(value.RetentionPeriod);
|
|
145
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
146
|
+
};
|
|
147
|
+
})(ArchiveRetention || (ArchiveRetention = {}));
|
|
148
|
+
export class ThrottlingException extends __BaseException {
|
|
149
|
+
constructor(opts) {
|
|
150
|
+
super({
|
|
151
|
+
name: "ThrottlingException",
|
|
152
|
+
$fault: "client",
|
|
153
|
+
...opts,
|
|
154
|
+
});
|
|
155
|
+
this.name = "ThrottlingException";
|
|
156
|
+
this.$fault = "client";
|
|
157
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
158
|
+
this.Message = opts.Message;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
export var IngressPointConfiguration;
|
|
162
|
+
(function (IngressPointConfiguration) {
|
|
163
|
+
IngressPointConfiguration.visit = (value, visitor) => {
|
|
164
|
+
if (value.SmtpPassword !== undefined)
|
|
165
|
+
return visitor.SmtpPassword(value.SmtpPassword);
|
|
166
|
+
if (value.SecretArn !== undefined)
|
|
167
|
+
return visitor.SecretArn(value.SecretArn);
|
|
168
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
169
|
+
};
|
|
170
|
+
})(IngressPointConfiguration || (IngressPointConfiguration = {}));
|
|
171
|
+
export const IngressPointType = {
|
|
172
|
+
AUTH: "AUTH",
|
|
173
|
+
OPEN: "OPEN",
|
|
174
|
+
};
|
|
175
|
+
export var RelayAuthentication;
|
|
176
|
+
(function (RelayAuthentication) {
|
|
177
|
+
RelayAuthentication.visit = (value, visitor) => {
|
|
178
|
+
if (value.SecretArn !== undefined)
|
|
179
|
+
return visitor.SecretArn(value.SecretArn);
|
|
180
|
+
if (value.NoAuthentication !== undefined)
|
|
181
|
+
return visitor.NoAuthentication(value.NoAuthentication);
|
|
182
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
183
|
+
};
|
|
184
|
+
})(RelayAuthentication || (RelayAuthentication = {}));
|
|
185
|
+
export const MailFrom = {
|
|
186
|
+
PRESERVE: "PRESERVE",
|
|
187
|
+
REPLACE: "REPLACE",
|
|
188
|
+
};
|
|
189
|
+
export var RuleAction;
|
|
190
|
+
(function (RuleAction) {
|
|
191
|
+
RuleAction.visit = (value, visitor) => {
|
|
192
|
+
if (value.Drop !== undefined)
|
|
193
|
+
return visitor.Drop(value.Drop);
|
|
194
|
+
if (value.Relay !== undefined)
|
|
195
|
+
return visitor.Relay(value.Relay);
|
|
196
|
+
if (value.Archive !== undefined)
|
|
197
|
+
return visitor.Archive(value.Archive);
|
|
198
|
+
if (value.WriteToS3 !== undefined)
|
|
199
|
+
return visitor.WriteToS3(value.WriteToS3);
|
|
200
|
+
if (value.Send !== undefined)
|
|
201
|
+
return visitor.Send(value.Send);
|
|
202
|
+
if (value.AddHeader !== undefined)
|
|
203
|
+
return visitor.AddHeader(value.AddHeader);
|
|
204
|
+
if (value.ReplaceRecipient !== undefined)
|
|
205
|
+
return visitor.ReplaceRecipient(value.ReplaceRecipient);
|
|
206
|
+
if (value.DeliverToMailbox !== undefined)
|
|
207
|
+
return visitor.DeliverToMailbox(value.DeliverToMailbox);
|
|
208
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
209
|
+
};
|
|
210
|
+
})(RuleAction || (RuleAction = {}));
|
|
211
|
+
export const RuleBooleanEmailAttribute = {
|
|
212
|
+
READ_RECEIPT_REQUESTED: "READ_RECEIPT_REQUESTED",
|
|
213
|
+
TLS: "TLS",
|
|
214
|
+
TLS_WRAPPED: "TLS_WRAPPED",
|
|
215
|
+
};
|
|
216
|
+
export var RuleBooleanToEvaluate;
|
|
217
|
+
(function (RuleBooleanToEvaluate) {
|
|
218
|
+
RuleBooleanToEvaluate.visit = (value, visitor) => {
|
|
219
|
+
if (value.Attribute !== undefined)
|
|
220
|
+
return visitor.Attribute(value.Attribute);
|
|
221
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
222
|
+
};
|
|
223
|
+
})(RuleBooleanToEvaluate || (RuleBooleanToEvaluate = {}));
|
|
224
|
+
export const RuleBooleanOperator = {
|
|
225
|
+
IS_FALSE: "IS_FALSE",
|
|
226
|
+
IS_TRUE: "IS_TRUE",
|
|
227
|
+
};
|
|
228
|
+
export const RuleDmarcOperator = {
|
|
229
|
+
EQUALS: "EQUALS",
|
|
230
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
231
|
+
};
|
|
232
|
+
export const RuleDmarcPolicy = {
|
|
233
|
+
NONE: "NONE",
|
|
234
|
+
QUARANTINE: "QUARANTINE",
|
|
235
|
+
REJECT: "REJECT",
|
|
236
|
+
};
|
|
237
|
+
export const RuleIpEmailAttribute = {
|
|
238
|
+
SOURCE_IP: "SOURCE_IP",
|
|
239
|
+
};
|
|
240
|
+
export var RuleIpToEvaluate;
|
|
241
|
+
(function (RuleIpToEvaluate) {
|
|
242
|
+
RuleIpToEvaluate.visit = (value, visitor) => {
|
|
243
|
+
if (value.Attribute !== undefined)
|
|
244
|
+
return visitor.Attribute(value.Attribute);
|
|
245
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
246
|
+
};
|
|
247
|
+
})(RuleIpToEvaluate || (RuleIpToEvaluate = {}));
|
|
248
|
+
export const RuleIpOperator = {
|
|
249
|
+
CIDR_MATCHES: "CIDR_MATCHES",
|
|
250
|
+
NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES",
|
|
251
|
+
};
|
|
252
|
+
export const RuleNumberEmailAttribute = {
|
|
253
|
+
MESSAGE_SIZE: "MESSAGE_SIZE",
|
|
254
|
+
};
|
|
255
|
+
export var RuleNumberToEvaluate;
|
|
256
|
+
(function (RuleNumberToEvaluate) {
|
|
257
|
+
RuleNumberToEvaluate.visit = (value, visitor) => {
|
|
258
|
+
if (value.Attribute !== undefined)
|
|
259
|
+
return visitor.Attribute(value.Attribute);
|
|
260
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
261
|
+
};
|
|
262
|
+
})(RuleNumberToEvaluate || (RuleNumberToEvaluate = {}));
|
|
263
|
+
export const RuleNumberOperator = {
|
|
264
|
+
EQUALS: "EQUALS",
|
|
265
|
+
GREATER_THAN: "GREATER_THAN",
|
|
266
|
+
GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",
|
|
267
|
+
LESS_THAN: "LESS_THAN",
|
|
268
|
+
LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL",
|
|
269
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
270
|
+
};
|
|
271
|
+
export const RuleStringEmailAttribute = {
|
|
272
|
+
CC: "CC",
|
|
273
|
+
FROM: "FROM",
|
|
274
|
+
HELO: "HELO",
|
|
275
|
+
MAIL_FROM: "MAIL_FROM",
|
|
276
|
+
RECIPIENT: "RECIPIENT",
|
|
277
|
+
SENDER: "SENDER",
|
|
278
|
+
SUBJECT: "SUBJECT",
|
|
279
|
+
TO: "TO",
|
|
280
|
+
};
|
|
281
|
+
export var RuleStringToEvaluate;
|
|
282
|
+
(function (RuleStringToEvaluate) {
|
|
283
|
+
RuleStringToEvaluate.visit = (value, visitor) => {
|
|
284
|
+
if (value.Attribute !== undefined)
|
|
285
|
+
return visitor.Attribute(value.Attribute);
|
|
286
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
287
|
+
};
|
|
288
|
+
})(RuleStringToEvaluate || (RuleStringToEvaluate = {}));
|
|
289
|
+
export const RuleStringOperator = {
|
|
290
|
+
CONTAINS: "CONTAINS",
|
|
291
|
+
ENDS_WITH: "ENDS_WITH",
|
|
292
|
+
EQUALS: "EQUALS",
|
|
293
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
294
|
+
STARTS_WITH: "STARTS_WITH",
|
|
295
|
+
};
|
|
296
|
+
export const RuleVerdictAttribute = {
|
|
297
|
+
DKIM: "DKIM",
|
|
298
|
+
SPF: "SPF",
|
|
299
|
+
};
|
|
300
|
+
export var RuleVerdictToEvaluate;
|
|
301
|
+
(function (RuleVerdictToEvaluate) {
|
|
302
|
+
RuleVerdictToEvaluate.visit = (value, visitor) => {
|
|
303
|
+
if (value.Attribute !== undefined)
|
|
304
|
+
return visitor.Attribute(value.Attribute);
|
|
305
|
+
if (value.Analysis !== undefined)
|
|
306
|
+
return visitor.Analysis(value.Analysis);
|
|
307
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
308
|
+
};
|
|
309
|
+
})(RuleVerdictToEvaluate || (RuleVerdictToEvaluate = {}));
|
|
310
|
+
export const RuleVerdictOperator = {
|
|
311
|
+
EQUALS: "EQUALS",
|
|
312
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
313
|
+
};
|
|
314
|
+
export const RuleVerdict = {
|
|
315
|
+
FAIL: "FAIL",
|
|
316
|
+
GRAY: "GRAY",
|
|
317
|
+
PASS: "PASS",
|
|
318
|
+
PROCESSING_FAILED: "PROCESSING_FAILED",
|
|
319
|
+
};
|
|
320
|
+
export var RuleCondition;
|
|
321
|
+
(function (RuleCondition) {
|
|
322
|
+
RuleCondition.visit = (value, visitor) => {
|
|
323
|
+
if (value.BooleanExpression !== undefined)
|
|
324
|
+
return visitor.BooleanExpression(value.BooleanExpression);
|
|
325
|
+
if (value.StringExpression !== undefined)
|
|
326
|
+
return visitor.StringExpression(value.StringExpression);
|
|
327
|
+
if (value.NumberExpression !== undefined)
|
|
328
|
+
return visitor.NumberExpression(value.NumberExpression);
|
|
329
|
+
if (value.IpExpression !== undefined)
|
|
330
|
+
return visitor.IpExpression(value.IpExpression);
|
|
331
|
+
if (value.VerdictExpression !== undefined)
|
|
332
|
+
return visitor.VerdictExpression(value.VerdictExpression);
|
|
333
|
+
if (value.DmarcExpression !== undefined)
|
|
334
|
+
return visitor.DmarcExpression(value.DmarcExpression);
|
|
335
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
336
|
+
};
|
|
337
|
+
})(RuleCondition || (RuleCondition = {}));
|
|
338
|
+
export var IngressBooleanToEvaluate;
|
|
339
|
+
(function (IngressBooleanToEvaluate) {
|
|
340
|
+
IngressBooleanToEvaluate.visit = (value, visitor) => {
|
|
341
|
+
if (value.Analysis !== undefined)
|
|
342
|
+
return visitor.Analysis(value.Analysis);
|
|
343
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
344
|
+
};
|
|
345
|
+
})(IngressBooleanToEvaluate || (IngressBooleanToEvaluate = {}));
|
|
346
|
+
export const IngressBooleanOperator = {
|
|
347
|
+
IS_FALSE: "IS_FALSE",
|
|
348
|
+
IS_TRUE: "IS_TRUE",
|
|
349
|
+
};
|
|
350
|
+
export const IngressIpv4Attribute = {
|
|
351
|
+
SENDER_IP: "SENDER_IP",
|
|
352
|
+
};
|
|
353
|
+
export var IngressIpToEvaluate;
|
|
354
|
+
(function (IngressIpToEvaluate) {
|
|
355
|
+
IngressIpToEvaluate.visit = (value, visitor) => {
|
|
356
|
+
if (value.Attribute !== undefined)
|
|
357
|
+
return visitor.Attribute(value.Attribute);
|
|
358
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
359
|
+
};
|
|
360
|
+
})(IngressIpToEvaluate || (IngressIpToEvaluate = {}));
|
|
361
|
+
export const IngressIpOperator = {
|
|
362
|
+
CIDR_MATCHES: "CIDR_MATCHES",
|
|
363
|
+
NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES",
|
|
364
|
+
};
|
|
365
|
+
export const IngressStringEmailAttribute = {
|
|
366
|
+
RECIPIENT: "RECIPIENT",
|
|
367
|
+
};
|
|
368
|
+
export var IngressStringToEvaluate;
|
|
369
|
+
(function (IngressStringToEvaluate) {
|
|
370
|
+
IngressStringToEvaluate.visit = (value, visitor) => {
|
|
371
|
+
if (value.Attribute !== undefined)
|
|
372
|
+
return visitor.Attribute(value.Attribute);
|
|
373
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
374
|
+
};
|
|
375
|
+
})(IngressStringToEvaluate || (IngressStringToEvaluate = {}));
|
|
376
|
+
export const IngressStringOperator = {
|
|
377
|
+
CONTAINS: "CONTAINS",
|
|
378
|
+
ENDS_WITH: "ENDS_WITH",
|
|
379
|
+
EQUALS: "EQUALS",
|
|
380
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
381
|
+
STARTS_WITH: "STARTS_WITH",
|
|
382
|
+
};
|
|
383
|
+
export const IngressTlsAttribute = {
|
|
384
|
+
TLS_PROTOCOL: "TLS_PROTOCOL",
|
|
385
|
+
};
|
|
386
|
+
export var IngressTlsProtocolToEvaluate;
|
|
387
|
+
(function (IngressTlsProtocolToEvaluate) {
|
|
388
|
+
IngressTlsProtocolToEvaluate.visit = (value, visitor) => {
|
|
389
|
+
if (value.Attribute !== undefined)
|
|
390
|
+
return visitor.Attribute(value.Attribute);
|
|
391
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
392
|
+
};
|
|
393
|
+
})(IngressTlsProtocolToEvaluate || (IngressTlsProtocolToEvaluate = {}));
|
|
394
|
+
export const IngressTlsProtocolOperator = {
|
|
395
|
+
IS: "IS",
|
|
396
|
+
MINIMUM_TLS_VERSION: "MINIMUM_TLS_VERSION",
|
|
397
|
+
};
|
|
398
|
+
export const IngressTlsProtocolAttribute = {
|
|
399
|
+
TLS1_2: "TLS1_2",
|
|
400
|
+
TLS1_3: "TLS1_3",
|
|
401
|
+
};
|
|
402
|
+
export var PolicyCondition;
|
|
403
|
+
(function (PolicyCondition) {
|
|
404
|
+
PolicyCondition.visit = (value, visitor) => {
|
|
405
|
+
if (value.StringExpression !== undefined)
|
|
406
|
+
return visitor.StringExpression(value.StringExpression);
|
|
407
|
+
if (value.IpExpression !== undefined)
|
|
408
|
+
return visitor.IpExpression(value.IpExpression);
|
|
409
|
+
if (value.TlsExpression !== undefined)
|
|
410
|
+
return visitor.TlsExpression(value.TlsExpression);
|
|
411
|
+
if (value.BooleanExpression !== undefined)
|
|
412
|
+
return visitor.BooleanExpression(value.BooleanExpression);
|
|
413
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
414
|
+
};
|
|
415
|
+
})(PolicyCondition || (PolicyCondition = {}));
|
|
416
|
+
export var ExportDestinationConfiguration;
|
|
417
|
+
(function (ExportDestinationConfiguration) {
|
|
418
|
+
ExportDestinationConfiguration.visit = (value, visitor) => {
|
|
419
|
+
if (value.S3 !== undefined)
|
|
420
|
+
return visitor.S3(value.S3);
|
|
421
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
422
|
+
};
|
|
423
|
+
})(ExportDestinationConfiguration || (ExportDestinationConfiguration = {}));
|
|
424
|
+
export const ExportState = {
|
|
425
|
+
CANCELLED: "CANCELLED",
|
|
426
|
+
COMPLETED: "COMPLETED",
|
|
427
|
+
FAILED: "FAILED",
|
|
428
|
+
PREPROCESSING: "PREPROCESSING",
|
|
429
|
+
PROCESSING: "PROCESSING",
|
|
430
|
+
QUEUED: "QUEUED",
|
|
431
|
+
};
|
|
432
|
+
export const SearchState = {
|
|
433
|
+
CANCELLED: "CANCELLED",
|
|
434
|
+
COMPLETED: "COMPLETED",
|
|
435
|
+
FAILED: "FAILED",
|
|
436
|
+
QUEUED: "QUEUED",
|
|
437
|
+
RUNNING: "RUNNING",
|
|
438
|
+
};
|
|
439
|
+
export const IngressPointStatus = {
|
|
440
|
+
ACTIVE: "ACTIVE",
|
|
441
|
+
CLOSED: "CLOSED",
|
|
442
|
+
DEPROVISIONING: "DEPROVISIONING",
|
|
443
|
+
FAILED: "FAILED",
|
|
444
|
+
PROVISIONING: "PROVISIONING",
|
|
445
|
+
UPDATING: "UPDATING",
|
|
446
|
+
};
|
|
447
|
+
export const IngressPointStatusToUpdate = {
|
|
448
|
+
ACTIVE: "ACTIVE",
|
|
449
|
+
CLOSED: "CLOSED",
|
|
450
|
+
};
|
|
451
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
452
|
+
...obj,
|
|
453
|
+
...(obj.Key && { Key: SENSITIVE_STRING }),
|
|
454
|
+
...(obj.Value && { Value: SENSITIVE_STRING }),
|
|
455
|
+
});
|
|
456
|
+
export const CreateAddonInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
457
|
+
...obj,
|
|
458
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
459
|
+
});
|
|
460
|
+
export const CreateAddonSubscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
463
|
+
});
|
|
464
|
+
export const CreateArchiveRequestFilterSensitiveLog = (obj) => ({
|
|
465
|
+
...obj,
|
|
466
|
+
...(obj.Retention && { Retention: obj.Retention }),
|
|
467
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
468
|
+
});
|
|
469
|
+
export const IngressPointConfigurationFilterSensitiveLog = (obj) => {
|
|
470
|
+
if (obj.SmtpPassword !== undefined)
|
|
471
|
+
return { SmtpPassword: SENSITIVE_STRING };
|
|
472
|
+
if (obj.SecretArn !== undefined)
|
|
473
|
+
return { SecretArn: obj.SecretArn };
|
|
474
|
+
if (obj.$unknown !== undefined)
|
|
475
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
476
|
+
};
|
|
477
|
+
export const CreateIngressPointRequestFilterSensitiveLog = (obj) => ({
|
|
478
|
+
...obj,
|
|
479
|
+
...(obj.IngressPointConfiguration && {
|
|
480
|
+
IngressPointConfiguration: IngressPointConfigurationFilterSensitiveLog(obj.IngressPointConfiguration),
|
|
481
|
+
}),
|
|
482
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
483
|
+
});
|
|
484
|
+
export const CreateRelayRequestFilterSensitiveLog = (obj) => ({
|
|
485
|
+
...obj,
|
|
486
|
+
...(obj.Authentication && { Authentication: obj.Authentication }),
|
|
487
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
488
|
+
});
|
|
489
|
+
export const ReplaceRecipientActionFilterSensitiveLog = (obj) => ({
|
|
490
|
+
...obj,
|
|
491
|
+
...(obj.ReplaceWith && { ReplaceWith: SENSITIVE_STRING }),
|
|
492
|
+
});
|
|
493
|
+
export const RuleActionFilterSensitiveLog = (obj) => {
|
|
494
|
+
if (obj.Drop !== undefined)
|
|
495
|
+
return { Drop: obj.Drop };
|
|
496
|
+
if (obj.Relay !== undefined)
|
|
497
|
+
return { Relay: obj.Relay };
|
|
498
|
+
if (obj.Archive !== undefined)
|
|
499
|
+
return { Archive: obj.Archive };
|
|
500
|
+
if (obj.WriteToS3 !== undefined)
|
|
501
|
+
return { WriteToS3: obj.WriteToS3 };
|
|
502
|
+
if (obj.Send !== undefined)
|
|
503
|
+
return { Send: obj.Send };
|
|
504
|
+
if (obj.AddHeader !== undefined)
|
|
505
|
+
return { AddHeader: obj.AddHeader };
|
|
506
|
+
if (obj.ReplaceRecipient !== undefined)
|
|
507
|
+
return { ReplaceRecipient: ReplaceRecipientActionFilterSensitiveLog(obj.ReplaceRecipient) };
|
|
508
|
+
if (obj.DeliverToMailbox !== undefined)
|
|
509
|
+
return { DeliverToMailbox: obj.DeliverToMailbox };
|
|
510
|
+
if (obj.$unknown !== undefined)
|
|
511
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
512
|
+
};
|
|
513
|
+
export const RuleFilterSensitiveLog = (obj) => ({
|
|
514
|
+
...obj,
|
|
515
|
+
...(obj.Conditions && { Conditions: obj.Conditions.map((item) => item) }),
|
|
516
|
+
...(obj.Unless && { Unless: obj.Unless.map((item) => item) }),
|
|
517
|
+
...(obj.Actions && { Actions: obj.Actions.map((item) => RuleActionFilterSensitiveLog(item)) }),
|
|
518
|
+
});
|
|
519
|
+
export const CreateRuleSetRequestFilterSensitiveLog = (obj) => ({
|
|
520
|
+
...obj,
|
|
521
|
+
...(obj.Rules && { Rules: obj.Rules.map((item) => RuleFilterSensitiveLog(item)) }),
|
|
522
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
523
|
+
});
|
|
524
|
+
export const CreateTrafficPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
525
|
+
...obj,
|
|
526
|
+
...(obj.PolicyStatements && { PolicyStatements: obj.PolicyStatements.map((item) => item) }),
|
|
527
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
528
|
+
});
|
|
529
|
+
export const GetRuleSetResponseFilterSensitiveLog = (obj) => ({
|
|
530
|
+
...obj,
|
|
531
|
+
...(obj.Rules && { Rules: obj.Rules.map((item) => RuleFilterSensitiveLog(item)) }),
|
|
532
|
+
});
|
|
533
|
+
export const UpdateIngressPointRequestFilterSensitiveLog = (obj) => ({
|
|
534
|
+
...obj,
|
|
535
|
+
...(obj.IngressPointConfiguration && {
|
|
536
|
+
IngressPointConfiguration: IngressPointConfigurationFilterSensitiveLog(obj.IngressPointConfiguration),
|
|
537
|
+
}),
|
|
538
|
+
});
|
|
539
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
540
|
+
...obj,
|
|
541
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
542
|
+
});
|
|
543
|
+
export const UpdateRuleSetRequestFilterSensitiveLog = (obj) => ({
|
|
544
|
+
...obj,
|
|
545
|
+
...(obj.Rules && { Rules: obj.Rules.map((item) => RuleFilterSensitiveLog(item)) }),
|
|
546
|
+
});
|
|
547
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
548
|
+
...obj,
|
|
549
|
+
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
550
|
+
});
|
|
551
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
...(obj.TagKeys && { TagKeys: SENSITIVE_STRING }),
|
|
554
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAddonInstancesCommand, } from "../commands/ListAddonInstancesCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListAddonInstances = createPaginator(MailManagerClient, ListAddonInstancesCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAddonSubscriptionsCommand, } from "../commands/ListAddonSubscriptionsCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListAddonSubscriptions = createPaginator(MailManagerClient, ListAddonSubscriptionsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListArchiveExportsCommand, } from "../commands/ListArchiveExportsCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListArchiveExports = createPaginator(MailManagerClient, ListArchiveExportsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListArchiveSearchesCommand, } from "../commands/ListArchiveSearchesCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListArchiveSearches = createPaginator(MailManagerClient, ListArchiveSearchesCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListArchivesCommand, } from "../commands/ListArchivesCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListArchives = createPaginator(MailManagerClient, ListArchivesCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListIngressPointsCommand, } from "../commands/ListIngressPointsCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListIngressPoints = createPaginator(MailManagerClient, ListIngressPointsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRelaysCommand } from "../commands/ListRelaysCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListRelays = createPaginator(MailManagerClient, ListRelaysCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRuleSetsCommand, } from "../commands/ListRuleSetsCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListRuleSets = createPaginator(MailManagerClient, ListRuleSetsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListTrafficPoliciesCommand, } from "../commands/ListTrafficPoliciesCommand";
|
|
3
|
+
import { MailManagerClient } from "../MailManagerClient";
|
|
4
|
+
export const paginateListTrafficPolicies = createPaginator(MailManagerClient, ListTrafficPoliciesCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAddonInstancesPaginator";
|
|
3
|
+
export * from "./ListAddonSubscriptionsPaginator";
|
|
4
|
+
export * from "./ListArchiveExportsPaginator";
|
|
5
|
+
export * from "./ListArchiveSearchesPaginator";
|
|
6
|
+
export * from "./ListArchivesPaginator";
|
|
7
|
+
export * from "./ListIngressPointsPaginator";
|
|
8
|
+
export * from "./ListRelaysPaginator";
|
|
9
|
+
export * from "./ListRuleSetsPaginator";
|
|
10
|
+
export * from "./ListTrafficPoliciesPaginator";
|