@aws-sdk/client-ses 3.32.0 → 3.36.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/CHANGELOG.md +44 -0
- package/dist-cjs/SES.js +1083 -0
- package/dist-cjs/SESClient.js +51 -0
- package/dist-cjs/commands/CloneReceiptRuleSetCommand.js +65 -0
- package/dist-cjs/commands/CreateConfigurationSetCommand.js +64 -0
- package/dist-cjs/commands/CreateConfigurationSetEventDestinationCommand.js +69 -0
- package/dist-cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js +64 -0
- package/dist-cjs/commands/CreateCustomVerificationEmailTemplateCommand.js +63 -0
- package/dist-cjs/commands/CreateReceiptFilterCommand.js +62 -0
- package/dist-cjs/commands/CreateReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/CreateReceiptRuleSetCommand.js +63 -0
- package/dist-cjs/commands/CreateTemplateCommand.js +63 -0
- package/dist-cjs/commands/DeleteConfigurationSetCommand.js +62 -0
- package/dist-cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +63 -0
- package/dist-cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js +69 -0
- package/dist-cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js +63 -0
- package/dist-cjs/commands/DeleteIdentityCommand.js +62 -0
- package/dist-cjs/commands/DeleteIdentityPolicyCommand.js +71 -0
- package/dist-cjs/commands/DeleteReceiptFilterCommand.js +63 -0
- package/dist-cjs/commands/DeleteReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/DeleteReceiptRuleSetCommand.js +66 -0
- package/dist-cjs/commands/DeleteTemplateCommand.js +61 -0
- package/dist-cjs/commands/DeleteVerifiedEmailAddressCommand.js +61 -0
- package/dist-cjs/commands/DescribeActiveReceiptRuleSetCommand.js +64 -0
- package/dist-cjs/commands/DescribeConfigurationSetCommand.js +63 -0
- package/dist-cjs/commands/DescribeReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/DescribeReceiptRuleSetCommand.js +62 -0
- package/dist-cjs/commands/GetAccountSendingEnabledCommand.js +61 -0
- package/dist-cjs/commands/GetCustomVerificationEmailTemplateCommand.js +64 -0
- package/dist-cjs/commands/GetIdentityDkimAttributesCommand.js +82 -0
- package/dist-cjs/commands/GetIdentityMailFromDomainAttributesCommand.js +63 -0
- package/dist-cjs/commands/GetIdentityNotificationAttributesCommand.js +65 -0
- package/dist-cjs/commands/GetIdentityPoliciesCommand.js +71 -0
- package/dist-cjs/commands/GetIdentityVerificationAttributesCommand.js +75 -0
- package/dist-cjs/commands/GetSendQuotaCommand.js +61 -0
- package/dist-cjs/commands/GetSendStatisticsCommand.js +63 -0
- package/dist-cjs/commands/GetTemplateCommand.js +62 -0
- package/dist-cjs/commands/ListConfigurationSetsCommand.js +69 -0
- package/dist-cjs/commands/ListCustomVerificationEmailTemplatesCommand.js +64 -0
- package/dist-cjs/commands/ListIdentitiesCommand.js +62 -0
- package/dist-cjs/commands/ListIdentityPoliciesCommand.js +71 -0
- package/dist-cjs/commands/ListReceiptFiltersCommand.js +64 -0
- package/dist-cjs/commands/ListReceiptRuleSetsCommand.js +65 -0
- package/dist-cjs/commands/ListTemplatesCommand.js +62 -0
- package/dist-cjs/commands/ListVerifiedEmailAddressesCommand.js +61 -0
- package/dist-cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js +60 -0
- package/dist-cjs/commands/PutIdentityPolicyCommand.js +70 -0
- package/dist-cjs/commands/ReorderReceiptRuleSetCommand.js +67 -0
- package/dist-cjs/commands/SendBounceCommand.js +68 -0
- package/dist-cjs/commands/SendBulkTemplatedEmailCommand.js +102 -0
- package/dist-cjs/commands/SendCustomVerificationEmailCommand.js +68 -0
- package/dist-cjs/commands/SendEmailCommand.js +104 -0
- package/dist-cjs/commands/SendRawEmailCommand.js +168 -0
- package/dist-cjs/commands/SendTemplatedEmailCommand.js +109 -0
- package/dist-cjs/commands/SetActiveReceiptRuleSetCommand.js +66 -0
- package/dist-cjs/commands/SetIdentityDkimEnabledCommand.js +72 -0
- package/dist-cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js +70 -0
- package/dist-cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +65 -0
- package/dist-cjs/commands/SetIdentityMailFromDomainCommand.js +69 -0
- package/dist-cjs/commands/SetIdentityNotificationTopicCommand.js +68 -0
- package/dist-cjs/commands/SetReceiptRulePositionCommand.js +63 -0
- package/dist-cjs/commands/TestRenderTemplateCommand.js +62 -0
- package/dist-cjs/commands/UpdateAccountSendingEnabledCommand.js +65 -0
- package/dist-cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +71 -0
- package/dist-cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +64 -0
- package/dist-cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js +65 -0
- package/dist-cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js +64 -0
- package/dist-cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js +63 -0
- package/dist-cjs/commands/UpdateReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/UpdateTemplateCommand.js +63 -0
- package/dist-cjs/commands/VerifyDomainDkimCommand.js +98 -0
- package/dist-cjs/commands/VerifyDomainIdentityCommand.js +66 -0
- package/dist-cjs/commands/VerifyEmailAddressCommand.js +61 -0
- package/dist-cjs/commands/VerifyEmailIdentityCommand.js +63 -0
- package/dist-cjs/endpoints.js +61 -0
- package/dist-cjs/index.js +81 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +1941 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js +45 -0
- package/dist-cjs/pagination/ListIdentitiesPaginator.js +45 -0
- package/dist-cjs/protocols/Aws_query.js +8205 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +46 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-cjs/waiters/waitForIdentityExists.js +52 -0
- package/dist-es/SES.js +1075 -0
- package/dist-es/SESClient.js +37 -0
- package/dist-es/commands/CloneReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/CreateConfigurationSetCommand.js +39 -0
- package/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +39 -0
- package/dist-es/commands/CreateConfigurationSetTrackingOptionsCommand.js +39 -0
- package/dist-es/commands/CreateCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/CreateReceiptFilterCommand.js +39 -0
- package/dist-es/commands/CreateReceiptRuleCommand.js +39 -0
- package/dist-es/commands/CreateReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/CreateTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteConfigurationSetCommand.js +39 -0
- package/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +39 -0
- package/dist-es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +39 -0
- package/dist-es/commands/DeleteCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteIdentityCommand.js +39 -0
- package/dist-es/commands/DeleteIdentityPolicyCommand.js +39 -0
- package/dist-es/commands/DeleteReceiptFilterCommand.js +39 -0
- package/dist-es/commands/DeleteReceiptRuleCommand.js +39 -0
- package/dist-es/commands/DeleteReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/DeleteTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteVerifiedEmailAddressCommand.js +39 -0
- package/dist-es/commands/DescribeActiveReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/DescribeConfigurationSetCommand.js +39 -0
- package/dist-es/commands/DescribeReceiptRuleCommand.js +39 -0
- package/dist-es/commands/DescribeReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/GetAccountSendingEnabledCommand.js +39 -0
- package/dist-es/commands/GetCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/GetIdentityDkimAttributesCommand.js +39 -0
- package/dist-es/commands/GetIdentityMailFromDomainAttributesCommand.js +39 -0
- package/dist-es/commands/GetIdentityNotificationAttributesCommand.js +39 -0
- package/dist-es/commands/GetIdentityPoliciesCommand.js +39 -0
- package/dist-es/commands/GetIdentityVerificationAttributesCommand.js +39 -0
- package/dist-es/commands/GetSendQuotaCommand.js +39 -0
- package/dist-es/commands/GetSendStatisticsCommand.js +39 -0
- package/dist-es/commands/GetTemplateCommand.js +39 -0
- package/dist-es/commands/ListConfigurationSetsCommand.js +39 -0
- package/dist-es/commands/ListCustomVerificationEmailTemplatesCommand.js +39 -0
- package/dist-es/commands/ListIdentitiesCommand.js +39 -0
- package/dist-es/commands/ListIdentityPoliciesCommand.js +39 -0
- package/dist-es/commands/ListReceiptFiltersCommand.js +39 -0
- package/dist-es/commands/ListReceiptRuleSetsCommand.js +39 -0
- package/dist-es/commands/ListTemplatesCommand.js +39 -0
- package/dist-es/commands/ListVerifiedEmailAddressesCommand.js +39 -0
- package/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +39 -0
- package/dist-es/commands/PutIdentityPolicyCommand.js +39 -0
- package/dist-es/commands/ReorderReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/SendBounceCommand.js +39 -0
- package/dist-es/commands/SendBulkTemplatedEmailCommand.js +39 -0
- package/dist-es/commands/SendCustomVerificationEmailCommand.js +39 -0
- package/dist-es/commands/SendEmailCommand.js +39 -0
- package/dist-es/commands/SendRawEmailCommand.js +39 -0
- package/dist-es/commands/SendTemplatedEmailCommand.js +39 -0
- package/dist-es/commands/SetActiveReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/SetIdentityDkimEnabledCommand.js +39 -0
- package/dist-es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +39 -0
- package/dist-es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +39 -0
- package/dist-es/commands/SetIdentityMailFromDomainCommand.js +39 -0
- package/dist-es/commands/SetIdentityNotificationTopicCommand.js +39 -0
- package/dist-es/commands/SetReceiptRulePositionCommand.js +39 -0
- package/dist-es/commands/TestRenderTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateAccountSendingEnabledCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetSendingEnabledCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +39 -0
- package/dist-es/commands/UpdateCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateReceiptRuleCommand.js +39 -0
- package/dist-es/commands/UpdateTemplateCommand.js +39 -0
- package/dist-es/commands/VerifyDomainDkimCommand.js +39 -0
- package/dist-es/commands/VerifyDomainIdentityCommand.js +39 -0
- package/dist-es/commands/VerifyEmailAddressCommand.js +39 -0
- package/dist-es/commands/VerifyEmailIdentityCommand.js +39 -0
- package/dist-es/endpoints.js +57 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +910 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListCustomVerificationEmailTemplatesPaginator.js +74 -0
- package/dist-es/pagination/ListIdentitiesPaginator.js +74 -0
- package/dist-es/protocols/Aws_query.js +8685 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-es/waiters/waitForIdentityExists.js +69 -0
- package/dist-types/SES.d.ts +1126 -0
- package/dist-types/SESClient.d.ts +211 -0
- package/dist-types/commands/CloneReceiptRuleSetCommand.d.ts +40 -0
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +39 -0
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +44 -0
- package/dist-types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/commands/CreateReceiptFilterCommand.d.ts +37 -0
- package/dist-types/commands/CreateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/CreateReceiptRuleSetCommand.d.ts +38 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +38 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +37 -0
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +38 -0
- package/dist-types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +44 -0
- package/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/commands/DeleteIdentityCommand.d.ts +37 -0
- package/dist-types/commands/DeleteIdentityPolicyCommand.d.ts +46 -0
- package/dist-types/commands/DeleteReceiptFilterCommand.d.ts +38 -0
- package/dist-types/commands/DeleteReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/DeleteReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/commands/DeleteTemplateCommand.d.ts +36 -0
- package/dist-types/commands/DeleteVerifiedEmailAddressCommand.d.ts +36 -0
- package/dist-types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +39 -0
- package/dist-types/commands/DescribeConfigurationSetCommand.d.ts +38 -0
- package/dist-types/commands/DescribeReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/DescribeReceiptRuleSetCommand.d.ts +37 -0
- package/dist-types/commands/GetAccountSendingEnabledCommand.d.ts +36 -0
- package/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +39 -0
- package/dist-types/commands/GetIdentityDkimAttributesCommand.d.ts +57 -0
- package/dist-types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +38 -0
- package/dist-types/commands/GetIdentityNotificationAttributesCommand.d.ts +40 -0
- package/dist-types/commands/GetIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/commands/GetIdentityVerificationAttributesCommand.d.ts +50 -0
- package/dist-types/commands/GetSendQuotaCommand.d.ts +36 -0
- package/dist-types/commands/GetSendStatisticsCommand.d.ts +38 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +37 -0
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +44 -0
- package/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +39 -0
- package/dist-types/commands/ListIdentitiesCommand.d.ts +37 -0
- package/dist-types/commands/ListIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/commands/ListReceiptFiltersCommand.d.ts +39 -0
- package/dist-types/commands/ListReceiptRuleSetsCommand.d.ts +40 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +37 -0
- package/dist-types/commands/ListVerifiedEmailAddressesCommand.d.ts +36 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +35 -0
- package/dist-types/commands/PutIdentityPolicyCommand.d.ts +45 -0
- package/dist-types/commands/ReorderReceiptRuleSetCommand.d.ts +42 -0
- package/dist-types/commands/SendBounceCommand.d.ts +43 -0
- package/dist-types/commands/SendBulkTemplatedEmailCommand.d.ts +77 -0
- package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +43 -0
- package/dist-types/commands/SendEmailCommand.d.ts +79 -0
- package/dist-types/commands/SendRawEmailCommand.d.ts +143 -0
- package/dist-types/commands/SendTemplatedEmailCommand.d.ts +84 -0
- package/dist-types/commands/SetActiveReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/commands/SetIdentityDkimEnabledCommand.d.ts +47 -0
- package/dist-types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +45 -0
- package/dist-types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +40 -0
- package/dist-types/commands/SetIdentityMailFromDomainCommand.d.ts +44 -0
- package/dist-types/commands/SetIdentityNotificationTopicCommand.d.ts +43 -0
- package/dist-types/commands/SetReceiptRulePositionCommand.d.ts +38 -0
- package/dist-types/commands/TestRenderTemplateCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAccountSendingEnabledCommand.d.ts +40 -0
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +46 -0
- package/dist-types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +39 -0
- package/dist-types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +40 -0
- package/dist-types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/commands/UpdateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +38 -0
- package/dist-types/commands/VerifyDomainDkimCommand.d.ts +73 -0
- package/dist-types/commands/VerifyDomainIdentityCommand.d.ts +41 -0
- package/dist-types/commands/VerifyEmailAddressCommand.d.ts +36 -0
- package/dist-types/commands/VerifyEmailIdentityCommand.d.ts +38 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListIdentitiesPaginator.d.ts +4 -0
- package/dist-types/protocols/Aws_query.d.ts +215 -0
- package/dist-types/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/dist-types/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/SES.d.ts +1126 -0
- package/dist-types/ts3.4/SESClient.d.ts +211 -0
- package/dist-types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIdentityCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +57 -0
- package/dist-types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetSendQuotaCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetSendStatisticsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SendBounceCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +77 -0
- package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +79 -0
- package/dist-types/ts3.4/commands/SendRawEmailCommand.d.ts +143 -0
- package/dist-types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +84 -0
- package/dist-types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TestRenderTemplateCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +73 -0
- package/dist-types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +38 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListIdentitiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +215 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/waiters/waitForIdentityExists.d.ts +14 -0
- package/dist-types/waiters/waitForIdentityExists.d.ts +14 -0
- package/package.json +53 -50
- package/SES.ts +0 -3242
- package/SESClient.ts +0 -606
- package/commands/CloneReceiptRuleSetCommand.ts +0 -99
- package/commands/CreateConfigurationSetCommand.ts +0 -98
- package/commands/CreateConfigurationSetEventDestinationCommand.ts +0 -115
- package/commands/CreateConfigurationSetTrackingOptionsCommand.ts +0 -110
- package/commands/CreateCustomVerificationEmailTemplateCommand.ts +0 -104
- package/commands/CreateReceiptFilterCommand.ts +0 -96
- package/commands/CreateReceiptRuleCommand.ts +0 -97
- package/commands/CreateReceiptRuleSetCommand.ts +0 -97
- package/commands/CreateTemplateCommand.ts +0 -97
- package/commands/DeleteConfigurationSetCommand.ts +0 -96
- package/commands/DeleteConfigurationSetEventDestinationCommand.ts +0 -109
- package/commands/DeleteConfigurationSetTrackingOptionsCommand.ts +0 -115
- package/commands/DeleteCustomVerificationEmailTemplateCommand.ts +0 -104
- package/commands/DeleteIdentityCommand.ts +0 -96
- package/commands/DeleteIdentityPolicyCommand.ts +0 -105
- package/commands/DeleteReceiptFilterCommand.ts +0 -97
- package/commands/DeleteReceiptRuleCommand.ts +0 -97
- package/commands/DeleteReceiptRuleSetCommand.ts +0 -100
- package/commands/DeleteTemplateCommand.ts +0 -95
- package/commands/DeleteVerifiedEmailAddressCommand.ts +0 -98
- package/commands/DescribeActiveReceiptRuleSetCommand.ts +0 -103
- package/commands/DescribeConfigurationSetCommand.ts +0 -97
- package/commands/DescribeReceiptRuleCommand.ts +0 -97
- package/commands/DescribeReceiptRuleSetCommand.ts +0 -96
- package/commands/GetAccountSendingEnabledCommand.ts +0 -95
- package/commands/GetCustomVerificationEmailTemplateCommand.ts +0 -109
- package/commands/GetIdentityDkimAttributesCommand.ts +0 -119
- package/commands/GetIdentityMailFromDomainAttributesCommand.ts +0 -108
- package/commands/GetIdentityNotificationAttributesCommand.ts +0 -110
- package/commands/GetIdentityPoliciesCommand.ts +0 -105
- package/commands/GetIdentityVerificationAttributesCommand.ts +0 -120
- package/commands/GetSendQuotaCommand.ts +0 -92
- package/commands/GetSendStatisticsCommand.ts +0 -97
- package/commands/GetTemplateCommand.ts +0 -93
- package/commands/ListConfigurationSetsCommand.ts +0 -103
- package/commands/ListCustomVerificationEmailTemplatesCommand.ts +0 -109
- package/commands/ListIdentitiesCommand.ts +0 -96
- package/commands/ListIdentityPoliciesCommand.ts +0 -105
- package/commands/ListReceiptFiltersCommand.ts +0 -98
- package/commands/ListReceiptRuleSetsCommand.ts +0 -99
- package/commands/ListTemplatesCommand.ts +0 -96
- package/commands/ListVerifiedEmailAddressesCommand.ts +0 -98
- package/commands/PutConfigurationSetDeliveryOptionsCommand.ts +0 -105
- package/commands/PutIdentityPolicyCommand.ts +0 -104
- package/commands/ReorderReceiptRuleSetCommand.ts +0 -101
- package/commands/SendBounceCommand.ts +0 -99
- package/commands/SendBulkTemplatedEmailCommand.ts +0 -136
- package/commands/SendCustomVerificationEmailCommand.ts +0 -107
- package/commands/SendEmailCommand.ts +0 -131
- package/commands/SendRawEmailCommand.ts +0 -199
- package/commands/SendTemplatedEmailCommand.ts +0 -143
- package/commands/SetActiveReceiptRuleSetCommand.ts +0 -100
- package/commands/SetIdentityDkimEnabledCommand.ts +0 -106
- package/commands/SetIdentityFeedbackForwardingEnabledCommand.ts +0 -115
- package/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts +0 -114
- package/commands/SetIdentityMailFromDomainCommand.ts +0 -106
- package/commands/SetIdentityNotificationTopicCommand.ts +0 -107
- package/commands/SetReceiptRulePositionCommand.ts +0 -97
- package/commands/TestRenderTemplateCommand.ts +0 -96
- package/commands/UpdateAccountSendingEnabledCommand.ts +0 -102
- package/commands/UpdateConfigurationSetEventDestinationCommand.ts +0 -117
- package/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts +0 -108
- package/commands/UpdateConfigurationSetSendingEnabledCommand.ts +0 -105
- package/commands/UpdateConfigurationSetTrackingOptionsCommand.ts +0 -110
- package/commands/UpdateCustomVerificationEmailTemplateCommand.ts +0 -104
- package/commands/UpdateReceiptRuleCommand.ts +0 -97
- package/commands/UpdateTemplateCommand.ts +0 -97
- package/commands/VerifyDomainDkimCommand.ts +0 -132
- package/commands/VerifyDomainIdentityCommand.ts +0 -100
- package/commands/VerifyEmailAddressCommand.ts +0 -95
- package/commands/VerifyEmailIdentityCommand.ts +0 -97
- package/dist/cjs/SES.js +0 -1084
- package/dist/cjs/SES.js.map +0 -1
- package/dist/cjs/SESClient.js +0 -52
- package/dist/cjs/SESClient.js.map +0 -1
- package/dist/cjs/commands/CloneReceiptRuleSetCommand.js +0 -66
- package/dist/cjs/commands/CloneReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateConfigurationSetCommand.js +0 -65
- package/dist/cjs/commands/CreateConfigurationSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateConfigurationSetEventDestinationCommand.js +0 -70
- package/dist/cjs/commands/CreateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js +0 -65
- package/dist/cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/CreateCustomVerificationEmailTemplateCommand.js +0 -64
- package/dist/cjs/commands/CreateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/CreateReceiptFilterCommand.js +0 -63
- package/dist/cjs/commands/CreateReceiptFilterCommand.js.map +0 -1
- package/dist/cjs/commands/CreateReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/CreateReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/CreateReceiptRuleSetCommand.js +0 -64
- package/dist/cjs/commands/CreateReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateTemplateCommand.js +0 -64
- package/dist/cjs/commands/CreateTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteConfigurationSetCommand.js +0 -63
- package/dist/cjs/commands/DeleteConfigurationSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +0 -64
- package/dist/cjs/commands/DeleteConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js +0 -70
- package/dist/cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js +0 -64
- package/dist/cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteIdentityCommand.js +0 -63
- package/dist/cjs/commands/DeleteIdentityCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteIdentityPolicyCommand.js +0 -72
- package/dist/cjs/commands/DeleteIdentityPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteReceiptFilterCommand.js +0 -64
- package/dist/cjs/commands/DeleteReceiptFilterCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/DeleteReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteReceiptRuleSetCommand.js +0 -67
- package/dist/cjs/commands/DeleteReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteTemplateCommand.js +0 -62
- package/dist/cjs/commands/DeleteTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteVerifiedEmailAddressCommand.js +0 -62
- package/dist/cjs/commands/DeleteVerifiedEmailAddressCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeActiveReceiptRuleSetCommand.js +0 -65
- package/dist/cjs/commands/DescribeActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeConfigurationSetCommand.js +0 -64
- package/dist/cjs/commands/DescribeConfigurationSetCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/DescribeReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeReceiptRuleSetCommand.js +0 -63
- package/dist/cjs/commands/DescribeReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetAccountSendingEnabledCommand.js +0 -62
- package/dist/cjs/commands/GetAccountSendingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/GetCustomVerificationEmailTemplateCommand.js +0 -65
- package/dist/cjs/commands/GetCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityDkimAttributesCommand.js +0 -83
- package/dist/cjs/commands/GetIdentityDkimAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityMailFromDomainAttributesCommand.js +0 -64
- package/dist/cjs/commands/GetIdentityMailFromDomainAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityNotificationAttributesCommand.js +0 -66
- package/dist/cjs/commands/GetIdentityNotificationAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityPoliciesCommand.js +0 -72
- package/dist/cjs/commands/GetIdentityPoliciesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityVerificationAttributesCommand.js +0 -76
- package/dist/cjs/commands/GetIdentityVerificationAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetSendQuotaCommand.js +0 -62
- package/dist/cjs/commands/GetSendQuotaCommand.js.map +0 -1
- package/dist/cjs/commands/GetSendStatisticsCommand.js +0 -64
- package/dist/cjs/commands/GetSendStatisticsCommand.js.map +0 -1
- package/dist/cjs/commands/GetTemplateCommand.js +0 -63
- package/dist/cjs/commands/GetTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/ListConfigurationSetsCommand.js +0 -70
- package/dist/cjs/commands/ListConfigurationSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListCustomVerificationEmailTemplatesCommand.js +0 -65
- package/dist/cjs/commands/ListCustomVerificationEmailTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListIdentitiesCommand.js +0 -63
- package/dist/cjs/commands/ListIdentitiesCommand.js.map +0 -1
- package/dist/cjs/commands/ListIdentityPoliciesCommand.js +0 -72
- package/dist/cjs/commands/ListIdentityPoliciesCommand.js.map +0 -1
- package/dist/cjs/commands/ListReceiptFiltersCommand.js +0 -65
- package/dist/cjs/commands/ListReceiptFiltersCommand.js.map +0 -1
- package/dist/cjs/commands/ListReceiptRuleSetsCommand.js +0 -66
- package/dist/cjs/commands/ListReceiptRuleSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListTemplatesCommand.js +0 -63
- package/dist/cjs/commands/ListTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListVerifiedEmailAddressesCommand.js +0 -62
- package/dist/cjs/commands/ListVerifiedEmailAddressesCommand.js.map +0 -1
- package/dist/cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js +0 -61
- package/dist/cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/PutIdentityPolicyCommand.js +0 -71
- package/dist/cjs/commands/PutIdentityPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/ReorderReceiptRuleSetCommand.js +0 -68
- package/dist/cjs/commands/ReorderReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/SendBounceCommand.js +0 -69
- package/dist/cjs/commands/SendBounceCommand.js.map +0 -1
- package/dist/cjs/commands/SendBulkTemplatedEmailCommand.js +0 -103
- package/dist/cjs/commands/SendBulkTemplatedEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendCustomVerificationEmailCommand.js +0 -69
- package/dist/cjs/commands/SendCustomVerificationEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendEmailCommand.js +0 -105
- package/dist/cjs/commands/SendEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendRawEmailCommand.js +0 -169
- package/dist/cjs/commands/SendRawEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendTemplatedEmailCommand.js +0 -110
- package/dist/cjs/commands/SendTemplatedEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SetActiveReceiptRuleSetCommand.js +0 -67
- package/dist/cjs/commands/SetActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityDkimEnabledCommand.js +0 -73
- package/dist/cjs/commands/SetIdentityDkimEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js +0 -71
- package/dist/cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +0 -66
- package/dist/cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityMailFromDomainCommand.js +0 -70
- package/dist/cjs/commands/SetIdentityMailFromDomainCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityNotificationTopicCommand.js +0 -69
- package/dist/cjs/commands/SetIdentityNotificationTopicCommand.js.map +0 -1
- package/dist/cjs/commands/SetReceiptRulePositionCommand.js +0 -64
- package/dist/cjs/commands/SetReceiptRulePositionCommand.js.map +0 -1
- package/dist/cjs/commands/TestRenderTemplateCommand.js +0 -63
- package/dist/cjs/commands/TestRenderTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateAccountSendingEnabledCommand.js +0 -66
- package/dist/cjs/commands/UpdateAccountSendingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +0 -72
- package/dist/cjs/commands/UpdateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +0 -65
- package/dist/cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js +0 -66
- package/dist/cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js +0 -65
- package/dist/cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js +0 -64
- package/dist/cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/UpdateReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateTemplateCommand.js +0 -64
- package/dist/cjs/commands/UpdateTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyDomainDkimCommand.js +0 -99
- package/dist/cjs/commands/VerifyDomainDkimCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyDomainIdentityCommand.js +0 -67
- package/dist/cjs/commands/VerifyDomainIdentityCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyEmailAddressCommand.js +0 -62
- package/dist/cjs/commands/VerifyEmailAddressCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyEmailIdentityCommand.js +0 -64
- package/dist/cjs/commands/VerifyEmailIdentityCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -62
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -82
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -1942
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -94
- package/dist/cjs/pagination/Interfaces.js +0 -3
- package/dist/cjs/pagination/Interfaces.js.map +0 -1
- package/dist/cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js +0 -46
- package/dist/cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListIdentitiesPaginator.js +0 -46
- package/dist/cjs/pagination/ListIdentitiesPaginator.js.map +0 -1
- package/dist/cjs/protocols/Aws_query.js +0 -8206
- package/dist/cjs/protocols/Aws_query.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/cjs/waiters/waitForIdentityExists.js +0 -53
- package/dist/cjs/waiters/waitForIdentityExists.js.map +0 -1
- package/dist/es/SES.js +0 -1087
- package/dist/es/SES.js.map +0 -1
- package/dist/es/SESClient.js +0 -54
- package/dist/es/SESClient.js.map +0 -1
- package/dist/es/commands/CloneReceiptRuleSetCommand.js +0 -70
- package/dist/es/commands/CloneReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/CreateConfigurationSetCommand.js +0 -69
- package/dist/es/commands/CreateConfigurationSetCommand.js.map +0 -1
- package/dist/es/commands/CreateConfigurationSetEventDestinationCommand.js +0 -74
- package/dist/es/commands/CreateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/es/commands/CreateConfigurationSetTrackingOptionsCommand.js +0 -69
- package/dist/es/commands/CreateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/es/commands/CreateCustomVerificationEmailTemplateCommand.js +0 -68
- package/dist/es/commands/CreateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/CreateReceiptFilterCommand.js +0 -67
- package/dist/es/commands/CreateReceiptFilterCommand.js.map +0 -1
- package/dist/es/commands/CreateReceiptRuleCommand.js +0 -68
- package/dist/es/commands/CreateReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/CreateReceiptRuleSetCommand.js +0 -68
- package/dist/es/commands/CreateReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/CreateTemplateCommand.js +0 -68
- package/dist/es/commands/CreateTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteConfigurationSetCommand.js +0 -67
- package/dist/es/commands/DeleteConfigurationSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteConfigurationSetEventDestinationCommand.js +0 -68
- package/dist/es/commands/DeleteConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +0 -74
- package/dist/es/commands/DeleteConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/es/commands/DeleteCustomVerificationEmailTemplateCommand.js +0 -68
- package/dist/es/commands/DeleteCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteIdentityCommand.js +0 -67
- package/dist/es/commands/DeleteIdentityCommand.js.map +0 -1
- package/dist/es/commands/DeleteIdentityPolicyCommand.js +0 -76
- package/dist/es/commands/DeleteIdentityPolicyCommand.js.map +0 -1
- package/dist/es/commands/DeleteReceiptFilterCommand.js +0 -68
- package/dist/es/commands/DeleteReceiptFilterCommand.js.map +0 -1
- package/dist/es/commands/DeleteReceiptRuleCommand.js +0 -68
- package/dist/es/commands/DeleteReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/DeleteReceiptRuleSetCommand.js +0 -71
- package/dist/es/commands/DeleteReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteTemplateCommand.js +0 -66
- package/dist/es/commands/DeleteTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteVerifiedEmailAddressCommand.js +0 -66
- package/dist/es/commands/DeleteVerifiedEmailAddressCommand.js.map +0 -1
- package/dist/es/commands/DescribeActiveReceiptRuleSetCommand.js +0 -69
- package/dist/es/commands/DescribeActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/DescribeConfigurationSetCommand.js +0 -68
- package/dist/es/commands/DescribeConfigurationSetCommand.js.map +0 -1
- package/dist/es/commands/DescribeReceiptRuleCommand.js +0 -68
- package/dist/es/commands/DescribeReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/DescribeReceiptRuleSetCommand.js +0 -67
- package/dist/es/commands/DescribeReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/GetAccountSendingEnabledCommand.js +0 -66
- package/dist/es/commands/GetAccountSendingEnabledCommand.js.map +0 -1
- package/dist/es/commands/GetCustomVerificationEmailTemplateCommand.js +0 -69
- package/dist/es/commands/GetCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityDkimAttributesCommand.js +0 -87
- package/dist/es/commands/GetIdentityDkimAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityMailFromDomainAttributesCommand.js +0 -68
- package/dist/es/commands/GetIdentityMailFromDomainAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityNotificationAttributesCommand.js +0 -70
- package/dist/es/commands/GetIdentityNotificationAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityPoliciesCommand.js +0 -76
- package/dist/es/commands/GetIdentityPoliciesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityVerificationAttributesCommand.js +0 -80
- package/dist/es/commands/GetIdentityVerificationAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetSendQuotaCommand.js +0 -66
- package/dist/es/commands/GetSendQuotaCommand.js.map +0 -1
- package/dist/es/commands/GetSendStatisticsCommand.js +0 -68
- package/dist/es/commands/GetSendStatisticsCommand.js.map +0 -1
- package/dist/es/commands/GetTemplateCommand.js +0 -67
- package/dist/es/commands/GetTemplateCommand.js.map +0 -1
- package/dist/es/commands/ListConfigurationSetsCommand.js +0 -74
- package/dist/es/commands/ListConfigurationSetsCommand.js.map +0 -1
- package/dist/es/commands/ListCustomVerificationEmailTemplatesCommand.js +0 -69
- package/dist/es/commands/ListCustomVerificationEmailTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListIdentitiesCommand.js +0 -67
- package/dist/es/commands/ListIdentitiesCommand.js.map +0 -1
- package/dist/es/commands/ListIdentityPoliciesCommand.js +0 -76
- package/dist/es/commands/ListIdentityPoliciesCommand.js.map +0 -1
- package/dist/es/commands/ListReceiptFiltersCommand.js +0 -69
- package/dist/es/commands/ListReceiptFiltersCommand.js.map +0 -1
- package/dist/es/commands/ListReceiptRuleSetsCommand.js +0 -70
- package/dist/es/commands/ListReceiptRuleSetsCommand.js.map +0 -1
- package/dist/es/commands/ListTemplatesCommand.js +0 -67
- package/dist/es/commands/ListTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListVerifiedEmailAddressesCommand.js +0 -66
- package/dist/es/commands/ListVerifiedEmailAddressesCommand.js.map +0 -1
- package/dist/es/commands/PutConfigurationSetDeliveryOptionsCommand.js +0 -65
- package/dist/es/commands/PutConfigurationSetDeliveryOptionsCommand.js.map +0 -1
- package/dist/es/commands/PutIdentityPolicyCommand.js +0 -75
- package/dist/es/commands/PutIdentityPolicyCommand.js.map +0 -1
- package/dist/es/commands/ReorderReceiptRuleSetCommand.js +0 -72
- package/dist/es/commands/ReorderReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/SendBounceCommand.js +0 -73
- package/dist/es/commands/SendBounceCommand.js.map +0 -1
- package/dist/es/commands/SendBulkTemplatedEmailCommand.js +0 -107
- package/dist/es/commands/SendBulkTemplatedEmailCommand.js.map +0 -1
- package/dist/es/commands/SendCustomVerificationEmailCommand.js +0 -73
- package/dist/es/commands/SendCustomVerificationEmailCommand.js.map +0 -1
- package/dist/es/commands/SendEmailCommand.js +0 -109
- package/dist/es/commands/SendEmailCommand.js.map +0 -1
- package/dist/es/commands/SendRawEmailCommand.js +0 -173
- package/dist/es/commands/SendRawEmailCommand.js.map +0 -1
- package/dist/es/commands/SendTemplatedEmailCommand.js +0 -114
- package/dist/es/commands/SendTemplatedEmailCommand.js.map +0 -1
- package/dist/es/commands/SetActiveReceiptRuleSetCommand.js +0 -71
- package/dist/es/commands/SetActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityDkimEnabledCommand.js +0 -77
- package/dist/es/commands/SetIdentityDkimEnabledCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +0 -75
- package/dist/es/commands/SetIdentityFeedbackForwardingEnabledCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +0 -70
- package/dist/es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityMailFromDomainCommand.js +0 -74
- package/dist/es/commands/SetIdentityMailFromDomainCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityNotificationTopicCommand.js +0 -73
- package/dist/es/commands/SetIdentityNotificationTopicCommand.js.map +0 -1
- package/dist/es/commands/SetReceiptRulePositionCommand.js +0 -68
- package/dist/es/commands/SetReceiptRulePositionCommand.js.map +0 -1
- package/dist/es/commands/TestRenderTemplateCommand.js +0 -67
- package/dist/es/commands/TestRenderTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateAccountSendingEnabledCommand.js +0 -70
- package/dist/es/commands/UpdateAccountSendingEnabledCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetEventDestinationCommand.js +0 -76
- package/dist/es/commands/UpdateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +0 -69
- package/dist/es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetSendingEnabledCommand.js +0 -70
- package/dist/es/commands/UpdateConfigurationSetSendingEnabledCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +0 -69
- package/dist/es/commands/UpdateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/es/commands/UpdateCustomVerificationEmailTemplateCommand.js +0 -68
- package/dist/es/commands/UpdateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateReceiptRuleCommand.js +0 -68
- package/dist/es/commands/UpdateReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/UpdateTemplateCommand.js +0 -68
- package/dist/es/commands/UpdateTemplateCommand.js.map +0 -1
- package/dist/es/commands/VerifyDomainDkimCommand.js +0 -103
- package/dist/es/commands/VerifyDomainDkimCommand.js.map +0 -1
- package/dist/es/commands/VerifyDomainIdentityCommand.js +0 -71
- package/dist/es/commands/VerifyDomainIdentityCommand.js.map +0 -1
- package/dist/es/commands/VerifyEmailAddressCommand.js +0 -66
- package/dist/es/commands/VerifyEmailAddressCommand.js.map +0 -1
- package/dist/es/commands/VerifyEmailIdentityCommand.js +0 -68
- package/dist/es/commands/VerifyEmailIdentityCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -58
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -79
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -1526
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -94
- package/dist/es/pagination/Interfaces.js +0 -2
- package/dist/es/pagination/Interfaces.js.map +0 -1
- package/dist/es/pagination/ListCustomVerificationEmailTemplatesPaginator.js +0 -87
- package/dist/es/pagination/ListCustomVerificationEmailTemplatesPaginator.js.map +0 -1
- package/dist/es/pagination/ListIdentitiesPaginator.js +0 -87
- package/dist/es/pagination/ListIdentitiesPaginator.js.map +0 -1
- package/dist/es/protocols/Aws_query.js +0 -8688
- package/dist/es/protocols/Aws_query.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -20
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -25
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -12
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -17
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/es/waiters/waitForIdentityExists.js +0 -79
- package/dist/es/waiters/waitForIdentityExists.js.map +0 -1
- package/dist/types/SES.d.ts +0 -1126
- package/dist/types/SESClient.d.ts +0 -211
- package/dist/types/commands/CloneReceiptRuleSetCommand.d.ts +0 -40
- package/dist/types/commands/CreateConfigurationSetCommand.d.ts +0 -39
- package/dist/types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +0 -44
- package/dist/types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/commands/CreateReceiptFilterCommand.d.ts +0 -37
- package/dist/types/commands/CreateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/CreateReceiptRuleSetCommand.d.ts +0 -38
- package/dist/types/commands/CreateTemplateCommand.d.ts +0 -38
- package/dist/types/commands/DeleteConfigurationSetCommand.d.ts +0 -37
- package/dist/types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +0 -38
- package/dist/types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +0 -44
- package/dist/types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/commands/DeleteIdentityCommand.d.ts +0 -37
- package/dist/types/commands/DeleteIdentityPolicyCommand.d.ts +0 -46
- package/dist/types/commands/DeleteReceiptFilterCommand.d.ts +0 -38
- package/dist/types/commands/DeleteReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/DeleteReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/commands/DeleteTemplateCommand.d.ts +0 -36
- package/dist/types/commands/DeleteVerifiedEmailAddressCommand.d.ts +0 -36
- package/dist/types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +0 -39
- package/dist/types/commands/DescribeConfigurationSetCommand.d.ts +0 -38
- package/dist/types/commands/DescribeReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/DescribeReceiptRuleSetCommand.d.ts +0 -37
- package/dist/types/commands/GetAccountSendingEnabledCommand.d.ts +0 -36
- package/dist/types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +0 -39
- package/dist/types/commands/GetIdentityDkimAttributesCommand.d.ts +0 -57
- package/dist/types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +0 -38
- package/dist/types/commands/GetIdentityNotificationAttributesCommand.d.ts +0 -40
- package/dist/types/commands/GetIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/commands/GetIdentityVerificationAttributesCommand.d.ts +0 -50
- package/dist/types/commands/GetSendQuotaCommand.d.ts +0 -36
- package/dist/types/commands/GetSendStatisticsCommand.d.ts +0 -38
- package/dist/types/commands/GetTemplateCommand.d.ts +0 -37
- package/dist/types/commands/ListConfigurationSetsCommand.d.ts +0 -44
- package/dist/types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +0 -39
- package/dist/types/commands/ListIdentitiesCommand.d.ts +0 -37
- package/dist/types/commands/ListIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/commands/ListReceiptFiltersCommand.d.ts +0 -39
- package/dist/types/commands/ListReceiptRuleSetsCommand.d.ts +0 -40
- package/dist/types/commands/ListTemplatesCommand.d.ts +0 -37
- package/dist/types/commands/ListVerifiedEmailAddressesCommand.d.ts +0 -36
- package/dist/types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +0 -35
- package/dist/types/commands/PutIdentityPolicyCommand.d.ts +0 -45
- package/dist/types/commands/ReorderReceiptRuleSetCommand.d.ts +0 -42
- package/dist/types/commands/SendBounceCommand.d.ts +0 -43
- package/dist/types/commands/SendBulkTemplatedEmailCommand.d.ts +0 -77
- package/dist/types/commands/SendCustomVerificationEmailCommand.d.ts +0 -43
- package/dist/types/commands/SendEmailCommand.d.ts +0 -79
- package/dist/types/commands/SendRawEmailCommand.d.ts +0 -143
- package/dist/types/commands/SendTemplatedEmailCommand.d.ts +0 -84
- package/dist/types/commands/SetActiveReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/commands/SetIdentityDkimEnabledCommand.d.ts +0 -47
- package/dist/types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +0 -45
- package/dist/types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +0 -40
- package/dist/types/commands/SetIdentityMailFromDomainCommand.d.ts +0 -44
- package/dist/types/commands/SetIdentityNotificationTopicCommand.d.ts +0 -43
- package/dist/types/commands/SetReceiptRulePositionCommand.d.ts +0 -38
- package/dist/types/commands/TestRenderTemplateCommand.d.ts +0 -37
- package/dist/types/commands/UpdateAccountSendingEnabledCommand.d.ts +0 -40
- package/dist/types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +0 -46
- package/dist/types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +0 -39
- package/dist/types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +0 -40
- package/dist/types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/commands/UpdateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/UpdateTemplateCommand.d.ts +0 -38
- package/dist/types/commands/VerifyDomainDkimCommand.d.ts +0 -73
- package/dist/types/commands/VerifyDomainIdentityCommand.d.ts +0 -41
- package/dist/types/commands/VerifyEmailAddressCommand.d.ts +0 -36
- package/dist/types/commands/VerifyEmailIdentityCommand.d.ts +0 -38
- package/dist/types/pagination/Interfaces.d.ts +0 -6
- package/dist/types/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListIdentitiesPaginator.d.ts +0 -4
- package/dist/types/protocols/Aws_query.d.ts +0 -215
- package/dist/types/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/runtimeConfig.d.ts +0 -36
- package/dist/types/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/SES.d.ts +0 -1126
- package/dist/types/ts3.4/SESClient.d.ts +0 -211
- package/dist/types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteIdentityCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/DeleteTemplateCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +0 -57
- package/dist/types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +0 -50
- package/dist/types/ts3.4/commands/GetSendQuotaCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetSendStatisticsCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/GetTemplateCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/ListIdentitiesCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/ListTemplatesCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +0 -42
- package/dist/types/ts3.4/commands/SendBounceCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +0 -77
- package/dist/types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/SendEmailCommand.d.ts +0 -79
- package/dist/types/ts3.4/commands/SendRawEmailCommand.d.ts +0 -143
- package/dist/types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +0 -84
- package/dist/types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +0 -47
- package/dist/types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/TestRenderTemplateCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/UpdateTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +0 -38
- package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist/types/ts3.4/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListIdentitiesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/protocols/Aws_query.d.ts +0 -215
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/waiters/waitForIdentityExists.d.ts +0 -14
- package/dist/types/waiters/waitForIdentityExists.d.ts +0 -14
- package/endpoints.ts +0 -62
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -5983
- package/pagination/Interfaces.ts +0 -7
- package/pagination/ListCustomVerificationEmailTemplatesPaginator.ts +0 -58
- package/pagination/ListIdentitiesPaginator.ts +0 -58
- package/protocols/Aws_query.ts +0 -10354
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -12
- package/tsconfig.json +0 -32
- package/waiters/waitForIdentityExists.ts +0 -59
|
@@ -0,0 +1,1941 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CustomVerificationEmailInvalidContentException = exports.CreateCustomVerificationEmailTemplateRequest = exports.TrackingOptionsAlreadyExistsException = exports.InvalidTrackingOptionsException = exports.CreateConfigurationSetTrackingOptionsResponse = exports.CreateConfigurationSetTrackingOptionsRequest = exports.TrackingOptions = exports.InvalidSNSDestinationException = exports.InvalidFirehoseDestinationException = exports.InvalidCloudWatchDestinationException = exports.EventDestinationAlreadyExistsException = exports.CreateConfigurationSetEventDestinationResponse = exports.CreateConfigurationSetEventDestinationRequest = exports.EventDestination = exports.SNSDestination = exports.EventType = exports.KinesisFirehoseDestination = exports.InvalidConfigurationSetException = exports.CreateConfigurationSetResponse = exports.CreateConfigurationSetRequest = exports.ConfigurationSetSendingPausedException = exports.ConfigurationSetDoesNotExistException = exports.ConfigurationSetAttribute = exports.ConfigurationSetAlreadyExistsException = exports.ConfigurationSet = exports.CloudWatchDestination = exports.CloudWatchDimensionConfiguration = exports.DimensionValueSource = exports.RuleSetDoesNotExistException = exports.LimitExceededException = exports.CloneReceiptRuleSetResponse = exports.CloneReceiptRuleSetRequest = exports.CannotDeleteException = exports.BulkEmailDestinationStatus = exports.BulkEmailStatus = exports.BulkEmailDestination = exports.MessageTag = exports.Destination = exports.BouncedRecipientInfo = exports.RecipientDsnFields = exports.ExtensionField = exports.DsnAction = exports.BounceType = exports.BounceAction = exports.Body = exports.Content = exports.BehaviorOnMXFailure = exports.AlreadyExistsException = exports.AddHeaderAction = exports.AccountSendingPausedException = void 0;
|
|
4
|
+
exports.DeleteReceiptRuleSetRequest = exports.DeleteReceiptRuleResponse = exports.DeleteReceiptRuleRequest = exports.DeleteReceiptFilterResponse = exports.DeleteReceiptFilterRequest = exports.DeleteIdentityPolicyResponse = exports.DeleteIdentityPolicyRequest = exports.DeleteIdentityResponse = exports.DeleteIdentityRequest = exports.DeleteCustomVerificationEmailTemplateRequest = exports.TrackingOptionsDoesNotExistException = exports.DeleteConfigurationSetTrackingOptionsResponse = exports.DeleteConfigurationSetTrackingOptionsRequest = exports.EventDestinationDoesNotExistException = exports.DeleteConfigurationSetEventDestinationResponse = exports.DeleteConfigurationSetEventDestinationRequest = exports.DeleteConfigurationSetResponse = exports.DeleteConfigurationSetRequest = exports.CustomVerificationEmailTemplateDoesNotExistException = exports.CustomVerificationEmailTemplate = exports.CustomMailFromStatus = exports.InvalidTemplateException = exports.CreateTemplateResponse = exports.CreateTemplateRequest = exports.Template = exports.CreateReceiptRuleSetResponse = exports.CreateReceiptRuleSetRequest = exports.RuleDoesNotExistException = exports.InvalidSnsTopicException = exports.InvalidS3ConfigurationException = exports.InvalidLambdaFunctionException = exports.CreateReceiptRuleResponse = exports.CreateReceiptRuleRequest = exports.ReceiptRule = exports.TlsPolicy = exports.ReceiptAction = exports.WorkmailAction = exports.StopAction = exports.StopScope = exports.SNSAction = exports.SNSActionEncoding = exports.S3Action = exports.LambdaAction = exports.CreateReceiptFilterResponse = exports.CreateReceiptFilterRequest = exports.ReceiptFilter = exports.ReceiptIpFilter = exports.ReceiptFilterPolicy = exports.FromEmailAddressNotVerifiedException = exports.CustomVerificationEmailTemplateAlreadyExistsException = void 0;
|
|
5
|
+
exports.ListReceiptFiltersRequest = exports.ListIdentityPoliciesResponse = exports.ListIdentityPoliciesRequest = exports.ListIdentitiesResponse = exports.ListIdentitiesRequest = exports.ListCustomVerificationEmailTemplatesResponse = exports.ListCustomVerificationEmailTemplatesRequest = exports.ListConfigurationSetsResponse = exports.ListConfigurationSetsRequest = exports.InvalidRenderingParameterException = exports.InvalidPolicyException = exports.InvalidDeliveryOptionsException = exports.TemplateDoesNotExistException = exports.GetTemplateResponse = exports.GetTemplateRequest = exports.GetSendStatisticsResponse = exports.SendDataPoint = exports.GetSendQuotaResponse = exports.GetIdentityVerificationAttributesResponse = exports.IdentityVerificationAttributes = exports.GetIdentityVerificationAttributesRequest = exports.GetIdentityPoliciesResponse = exports.GetIdentityPoliciesRequest = exports.GetIdentityNotificationAttributesResponse = exports.IdentityNotificationAttributes = exports.GetIdentityNotificationAttributesRequest = exports.GetIdentityMailFromDomainAttributesResponse = exports.IdentityMailFromDomainAttributes = exports.GetIdentityMailFromDomainAttributesRequest = exports.GetIdentityDkimAttributesResponse = exports.GetIdentityDkimAttributesRequest = exports.GetCustomVerificationEmailTemplateResponse = exports.GetCustomVerificationEmailTemplateRequest = exports.GetAccountSendingEnabledResponse = exports.IdentityDkimAttributes = exports.DescribeReceiptRuleSetResponse = exports.DescribeReceiptRuleSetRequest = exports.DescribeReceiptRuleResponse = exports.DescribeReceiptRuleRequest = exports.DescribeConfigurationSetResponse = exports.ReputationOptions = exports.DescribeConfigurationSetRequest = exports.DescribeActiveReceiptRuleSetResponse = exports.ReceiptRuleSetMetadata = exports.DescribeActiveReceiptRuleSetRequest = exports.DeliveryOptions = exports.DeleteVerifiedEmailAddressRequest = exports.DeleteTemplateResponse = exports.DeleteTemplateRequest = exports.DeleteReceiptRuleSetResponse = void 0;
|
|
6
|
+
exports.UpdateConfigurationSetEventDestinationRequest = exports.UpdateAccountSendingEnabledRequest = exports.TestRenderTemplateResponse = exports.TestRenderTemplateRequest = exports.SetReceiptRulePositionResponse = exports.SetReceiptRulePositionRequest = exports.SetIdentityNotificationTopicResponse = exports.SetIdentityNotificationTopicRequest = exports.SetIdentityMailFromDomainResponse = exports.SetIdentityMailFromDomainRequest = exports.SetIdentityHeadersInNotificationsEnabledResponse = exports.SetIdentityHeadersInNotificationsEnabledRequest = exports.SetIdentityFeedbackForwardingEnabledResponse = exports.SetIdentityFeedbackForwardingEnabledRequest = exports.SetIdentityDkimEnabledResponse = exports.SetIdentityDkimEnabledRequest = exports.SetActiveReceiptRuleSetResponse = exports.SetActiveReceiptRuleSetRequest = exports.SendTemplatedEmailResponse = exports.SendTemplatedEmailRequest = exports.SendRawEmailResponse = exports.SendRawEmailRequest = exports.SendEmailResponse = exports.SendEmailRequest = exports.SendCustomVerificationEmailResponse = exports.SendCustomVerificationEmailRequest = exports.SendBulkTemplatedEmailResponse = exports.SendBulkTemplatedEmailRequest = exports.SendBounceResponse = exports.SendBounceRequest = exports.ReorderReceiptRuleSetResponse = exports.ReorderReceiptRuleSetRequest = exports.RawMessage = exports.PutIdentityPolicyResponse = exports.PutIdentityPolicyRequest = exports.PutConfigurationSetDeliveryOptionsResponse = exports.PutConfigurationSetDeliveryOptionsRequest = exports.ProductionAccessNotGrantedException = exports.MissingRenderingAttributeException = exports.MessageRejected = exports.MessageDsn = exports.Message = exports.MailFromDomainNotVerifiedException = exports.ListVerifiedEmailAddressesResponse = exports.ListTemplatesResponse = exports.TemplateMetadata = exports.ListTemplatesRequest = exports.ListReceiptRuleSetsResponse = exports.ListReceiptRuleSetsRequest = exports.ListReceiptFiltersResponse = void 0;
|
|
7
|
+
exports.VerifyEmailIdentityResponse = exports.VerifyEmailIdentityRequest = exports.VerifyEmailAddressRequest = exports.VerifyDomainIdentityResponse = exports.VerifyDomainIdentityRequest = exports.VerifyDomainDkimResponse = exports.VerifyDomainDkimRequest = exports.UpdateTemplateResponse = exports.UpdateTemplateRequest = exports.UpdateReceiptRuleResponse = exports.UpdateReceiptRuleRequest = exports.UpdateCustomVerificationEmailTemplateRequest = exports.UpdateConfigurationSetTrackingOptionsResponse = exports.UpdateConfigurationSetTrackingOptionsRequest = exports.UpdateConfigurationSetSendingEnabledRequest = exports.UpdateConfigurationSetReputationMetricsEnabledRequest = exports.UpdateConfigurationSetEventDestinationResponse = void 0;
|
|
8
|
+
var AccountSendingPausedException;
|
|
9
|
+
(function (AccountSendingPausedException) {
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
AccountSendingPausedException.filterSensitiveLog = (obj) => ({
|
|
14
|
+
...obj,
|
|
15
|
+
});
|
|
16
|
+
})(AccountSendingPausedException = exports.AccountSendingPausedException || (exports.AccountSendingPausedException = {}));
|
|
17
|
+
var AddHeaderAction;
|
|
18
|
+
(function (AddHeaderAction) {
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
AddHeaderAction.filterSensitiveLog = (obj) => ({
|
|
23
|
+
...obj,
|
|
24
|
+
});
|
|
25
|
+
})(AddHeaderAction = exports.AddHeaderAction || (exports.AddHeaderAction = {}));
|
|
26
|
+
var AlreadyExistsException;
|
|
27
|
+
(function (AlreadyExistsException) {
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
AlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
32
|
+
...obj,
|
|
33
|
+
});
|
|
34
|
+
})(AlreadyExistsException = exports.AlreadyExistsException || (exports.AlreadyExistsException = {}));
|
|
35
|
+
var BehaviorOnMXFailure;
|
|
36
|
+
(function (BehaviorOnMXFailure) {
|
|
37
|
+
BehaviorOnMXFailure["RejectMessage"] = "RejectMessage";
|
|
38
|
+
BehaviorOnMXFailure["UseDefaultValue"] = "UseDefaultValue";
|
|
39
|
+
})(BehaviorOnMXFailure = exports.BehaviorOnMXFailure || (exports.BehaviorOnMXFailure = {}));
|
|
40
|
+
var Content;
|
|
41
|
+
(function (Content) {
|
|
42
|
+
/**
|
|
43
|
+
* @internal
|
|
44
|
+
*/
|
|
45
|
+
Content.filterSensitiveLog = (obj) => ({
|
|
46
|
+
...obj,
|
|
47
|
+
});
|
|
48
|
+
})(Content = exports.Content || (exports.Content = {}));
|
|
49
|
+
var Body;
|
|
50
|
+
(function (Body) {
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
Body.filterSensitiveLog = (obj) => ({
|
|
55
|
+
...obj,
|
|
56
|
+
});
|
|
57
|
+
})(Body = exports.Body || (exports.Body = {}));
|
|
58
|
+
var BounceAction;
|
|
59
|
+
(function (BounceAction) {
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
63
|
+
BounceAction.filterSensitiveLog = (obj) => ({
|
|
64
|
+
...obj,
|
|
65
|
+
});
|
|
66
|
+
})(BounceAction = exports.BounceAction || (exports.BounceAction = {}));
|
|
67
|
+
var BounceType;
|
|
68
|
+
(function (BounceType) {
|
|
69
|
+
BounceType["ContentRejected"] = "ContentRejected";
|
|
70
|
+
BounceType["DoesNotExist"] = "DoesNotExist";
|
|
71
|
+
BounceType["ExceededQuota"] = "ExceededQuota";
|
|
72
|
+
BounceType["MessageTooLarge"] = "MessageTooLarge";
|
|
73
|
+
BounceType["TemporaryFailure"] = "TemporaryFailure";
|
|
74
|
+
BounceType["Undefined"] = "Undefined";
|
|
75
|
+
})(BounceType = exports.BounceType || (exports.BounceType = {}));
|
|
76
|
+
var DsnAction;
|
|
77
|
+
(function (DsnAction) {
|
|
78
|
+
DsnAction["DELAYED"] = "delayed";
|
|
79
|
+
DsnAction["DELIVERED"] = "delivered";
|
|
80
|
+
DsnAction["EXPANDED"] = "expanded";
|
|
81
|
+
DsnAction["FAILED"] = "failed";
|
|
82
|
+
DsnAction["RELAYED"] = "relayed";
|
|
83
|
+
})(DsnAction = exports.DsnAction || (exports.DsnAction = {}));
|
|
84
|
+
var ExtensionField;
|
|
85
|
+
(function (ExtensionField) {
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
ExtensionField.filterSensitiveLog = (obj) => ({
|
|
90
|
+
...obj,
|
|
91
|
+
});
|
|
92
|
+
})(ExtensionField = exports.ExtensionField || (exports.ExtensionField = {}));
|
|
93
|
+
var RecipientDsnFields;
|
|
94
|
+
(function (RecipientDsnFields) {
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
RecipientDsnFields.filterSensitiveLog = (obj) => ({
|
|
99
|
+
...obj,
|
|
100
|
+
});
|
|
101
|
+
})(RecipientDsnFields = exports.RecipientDsnFields || (exports.RecipientDsnFields = {}));
|
|
102
|
+
var BouncedRecipientInfo;
|
|
103
|
+
(function (BouncedRecipientInfo) {
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
BouncedRecipientInfo.filterSensitiveLog = (obj) => ({
|
|
108
|
+
...obj,
|
|
109
|
+
});
|
|
110
|
+
})(BouncedRecipientInfo = exports.BouncedRecipientInfo || (exports.BouncedRecipientInfo = {}));
|
|
111
|
+
var Destination;
|
|
112
|
+
(function (Destination) {
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
116
|
+
Destination.filterSensitiveLog = (obj) => ({
|
|
117
|
+
...obj,
|
|
118
|
+
});
|
|
119
|
+
})(Destination = exports.Destination || (exports.Destination = {}));
|
|
120
|
+
var MessageTag;
|
|
121
|
+
(function (MessageTag) {
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
MessageTag.filterSensitiveLog = (obj) => ({
|
|
126
|
+
...obj,
|
|
127
|
+
});
|
|
128
|
+
})(MessageTag = exports.MessageTag || (exports.MessageTag = {}));
|
|
129
|
+
var BulkEmailDestination;
|
|
130
|
+
(function (BulkEmailDestination) {
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
134
|
+
BulkEmailDestination.filterSensitiveLog = (obj) => ({
|
|
135
|
+
...obj,
|
|
136
|
+
});
|
|
137
|
+
})(BulkEmailDestination = exports.BulkEmailDestination || (exports.BulkEmailDestination = {}));
|
|
138
|
+
var BulkEmailStatus;
|
|
139
|
+
(function (BulkEmailStatus) {
|
|
140
|
+
BulkEmailStatus["AccountDailyQuotaExceeded"] = "AccountDailyQuotaExceeded";
|
|
141
|
+
BulkEmailStatus["AccountSendingPaused"] = "AccountSendingPaused";
|
|
142
|
+
BulkEmailStatus["AccountSuspended"] = "AccountSuspended";
|
|
143
|
+
BulkEmailStatus["AccountThrottled"] = "AccountThrottled";
|
|
144
|
+
BulkEmailStatus["ConfigurationSetDoesNotExist"] = "ConfigurationSetDoesNotExist";
|
|
145
|
+
BulkEmailStatus["ConfigurationSetSendingPaused"] = "ConfigurationSetSendingPaused";
|
|
146
|
+
BulkEmailStatus["Failed"] = "Failed";
|
|
147
|
+
BulkEmailStatus["InvalidParameterValue"] = "InvalidParameterValue";
|
|
148
|
+
BulkEmailStatus["InvalidSendingPoolName"] = "InvalidSendingPoolName";
|
|
149
|
+
BulkEmailStatus["MailFromDomainNotVerified"] = "MailFromDomainNotVerified";
|
|
150
|
+
BulkEmailStatus["MessageRejected"] = "MessageRejected";
|
|
151
|
+
BulkEmailStatus["Success"] = "Success";
|
|
152
|
+
BulkEmailStatus["TemplateDoesNotExist"] = "TemplateDoesNotExist";
|
|
153
|
+
BulkEmailStatus["TransientFailure"] = "TransientFailure";
|
|
154
|
+
})(BulkEmailStatus = exports.BulkEmailStatus || (exports.BulkEmailStatus = {}));
|
|
155
|
+
var BulkEmailDestinationStatus;
|
|
156
|
+
(function (BulkEmailDestinationStatus) {
|
|
157
|
+
/**
|
|
158
|
+
* @internal
|
|
159
|
+
*/
|
|
160
|
+
BulkEmailDestinationStatus.filterSensitiveLog = (obj) => ({
|
|
161
|
+
...obj,
|
|
162
|
+
});
|
|
163
|
+
})(BulkEmailDestinationStatus = exports.BulkEmailDestinationStatus || (exports.BulkEmailDestinationStatus = {}));
|
|
164
|
+
var CannotDeleteException;
|
|
165
|
+
(function (CannotDeleteException) {
|
|
166
|
+
/**
|
|
167
|
+
* @internal
|
|
168
|
+
*/
|
|
169
|
+
CannotDeleteException.filterSensitiveLog = (obj) => ({
|
|
170
|
+
...obj,
|
|
171
|
+
});
|
|
172
|
+
})(CannotDeleteException = exports.CannotDeleteException || (exports.CannotDeleteException = {}));
|
|
173
|
+
var CloneReceiptRuleSetRequest;
|
|
174
|
+
(function (CloneReceiptRuleSetRequest) {
|
|
175
|
+
/**
|
|
176
|
+
* @internal
|
|
177
|
+
*/
|
|
178
|
+
CloneReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
179
|
+
...obj,
|
|
180
|
+
});
|
|
181
|
+
})(CloneReceiptRuleSetRequest = exports.CloneReceiptRuleSetRequest || (exports.CloneReceiptRuleSetRequest = {}));
|
|
182
|
+
var CloneReceiptRuleSetResponse;
|
|
183
|
+
(function (CloneReceiptRuleSetResponse) {
|
|
184
|
+
/**
|
|
185
|
+
* @internal
|
|
186
|
+
*/
|
|
187
|
+
CloneReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
});
|
|
190
|
+
})(CloneReceiptRuleSetResponse = exports.CloneReceiptRuleSetResponse || (exports.CloneReceiptRuleSetResponse = {}));
|
|
191
|
+
var LimitExceededException;
|
|
192
|
+
(function (LimitExceededException) {
|
|
193
|
+
/**
|
|
194
|
+
* @internal
|
|
195
|
+
*/
|
|
196
|
+
LimitExceededException.filterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
});
|
|
199
|
+
})(LimitExceededException = exports.LimitExceededException || (exports.LimitExceededException = {}));
|
|
200
|
+
var RuleSetDoesNotExistException;
|
|
201
|
+
(function (RuleSetDoesNotExistException) {
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
RuleSetDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
206
|
+
...obj,
|
|
207
|
+
});
|
|
208
|
+
})(RuleSetDoesNotExistException = exports.RuleSetDoesNotExistException || (exports.RuleSetDoesNotExistException = {}));
|
|
209
|
+
var DimensionValueSource;
|
|
210
|
+
(function (DimensionValueSource) {
|
|
211
|
+
DimensionValueSource["EMAIL_HEADER"] = "emailHeader";
|
|
212
|
+
DimensionValueSource["LINK_TAG"] = "linkTag";
|
|
213
|
+
DimensionValueSource["MESSAGE_TAG"] = "messageTag";
|
|
214
|
+
})(DimensionValueSource = exports.DimensionValueSource || (exports.DimensionValueSource = {}));
|
|
215
|
+
var CloudWatchDimensionConfiguration;
|
|
216
|
+
(function (CloudWatchDimensionConfiguration) {
|
|
217
|
+
/**
|
|
218
|
+
* @internal
|
|
219
|
+
*/
|
|
220
|
+
CloudWatchDimensionConfiguration.filterSensitiveLog = (obj) => ({
|
|
221
|
+
...obj,
|
|
222
|
+
});
|
|
223
|
+
})(CloudWatchDimensionConfiguration = exports.CloudWatchDimensionConfiguration || (exports.CloudWatchDimensionConfiguration = {}));
|
|
224
|
+
var CloudWatchDestination;
|
|
225
|
+
(function (CloudWatchDestination) {
|
|
226
|
+
/**
|
|
227
|
+
* @internal
|
|
228
|
+
*/
|
|
229
|
+
CloudWatchDestination.filterSensitiveLog = (obj) => ({
|
|
230
|
+
...obj,
|
|
231
|
+
});
|
|
232
|
+
})(CloudWatchDestination = exports.CloudWatchDestination || (exports.CloudWatchDestination = {}));
|
|
233
|
+
var ConfigurationSet;
|
|
234
|
+
(function (ConfigurationSet) {
|
|
235
|
+
/**
|
|
236
|
+
* @internal
|
|
237
|
+
*/
|
|
238
|
+
ConfigurationSet.filterSensitiveLog = (obj) => ({
|
|
239
|
+
...obj,
|
|
240
|
+
});
|
|
241
|
+
})(ConfigurationSet = exports.ConfigurationSet || (exports.ConfigurationSet = {}));
|
|
242
|
+
var ConfigurationSetAlreadyExistsException;
|
|
243
|
+
(function (ConfigurationSetAlreadyExistsException) {
|
|
244
|
+
/**
|
|
245
|
+
* @internal
|
|
246
|
+
*/
|
|
247
|
+
ConfigurationSetAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
})(ConfigurationSetAlreadyExistsException = exports.ConfigurationSetAlreadyExistsException || (exports.ConfigurationSetAlreadyExistsException = {}));
|
|
251
|
+
var ConfigurationSetAttribute;
|
|
252
|
+
(function (ConfigurationSetAttribute) {
|
|
253
|
+
ConfigurationSetAttribute["DELIVERY_OPTIONS"] = "deliveryOptions";
|
|
254
|
+
ConfigurationSetAttribute["EVENT_DESTINATIONS"] = "eventDestinations";
|
|
255
|
+
ConfigurationSetAttribute["REPUTATION_OPTIONS"] = "reputationOptions";
|
|
256
|
+
ConfigurationSetAttribute["TRACKING_OPTIONS"] = "trackingOptions";
|
|
257
|
+
})(ConfigurationSetAttribute = exports.ConfigurationSetAttribute || (exports.ConfigurationSetAttribute = {}));
|
|
258
|
+
var ConfigurationSetDoesNotExistException;
|
|
259
|
+
(function (ConfigurationSetDoesNotExistException) {
|
|
260
|
+
/**
|
|
261
|
+
* @internal
|
|
262
|
+
*/
|
|
263
|
+
ConfigurationSetDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
});
|
|
266
|
+
})(ConfigurationSetDoesNotExistException = exports.ConfigurationSetDoesNotExistException || (exports.ConfigurationSetDoesNotExistException = {}));
|
|
267
|
+
var ConfigurationSetSendingPausedException;
|
|
268
|
+
(function (ConfigurationSetSendingPausedException) {
|
|
269
|
+
/**
|
|
270
|
+
* @internal
|
|
271
|
+
*/
|
|
272
|
+
ConfigurationSetSendingPausedException.filterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
})(ConfigurationSetSendingPausedException = exports.ConfigurationSetSendingPausedException || (exports.ConfigurationSetSendingPausedException = {}));
|
|
276
|
+
var CreateConfigurationSetRequest;
|
|
277
|
+
(function (CreateConfigurationSetRequest) {
|
|
278
|
+
/**
|
|
279
|
+
* @internal
|
|
280
|
+
*/
|
|
281
|
+
CreateConfigurationSetRequest.filterSensitiveLog = (obj) => ({
|
|
282
|
+
...obj,
|
|
283
|
+
});
|
|
284
|
+
})(CreateConfigurationSetRequest = exports.CreateConfigurationSetRequest || (exports.CreateConfigurationSetRequest = {}));
|
|
285
|
+
var CreateConfigurationSetResponse;
|
|
286
|
+
(function (CreateConfigurationSetResponse) {
|
|
287
|
+
/**
|
|
288
|
+
* @internal
|
|
289
|
+
*/
|
|
290
|
+
CreateConfigurationSetResponse.filterSensitiveLog = (obj) => ({
|
|
291
|
+
...obj,
|
|
292
|
+
});
|
|
293
|
+
})(CreateConfigurationSetResponse = exports.CreateConfigurationSetResponse || (exports.CreateConfigurationSetResponse = {}));
|
|
294
|
+
var InvalidConfigurationSetException;
|
|
295
|
+
(function (InvalidConfigurationSetException) {
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
InvalidConfigurationSetException.filterSensitiveLog = (obj) => ({
|
|
300
|
+
...obj,
|
|
301
|
+
});
|
|
302
|
+
})(InvalidConfigurationSetException = exports.InvalidConfigurationSetException || (exports.InvalidConfigurationSetException = {}));
|
|
303
|
+
var KinesisFirehoseDestination;
|
|
304
|
+
(function (KinesisFirehoseDestination) {
|
|
305
|
+
/**
|
|
306
|
+
* @internal
|
|
307
|
+
*/
|
|
308
|
+
KinesisFirehoseDestination.filterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
});
|
|
311
|
+
})(KinesisFirehoseDestination = exports.KinesisFirehoseDestination || (exports.KinesisFirehoseDestination = {}));
|
|
312
|
+
var EventType;
|
|
313
|
+
(function (EventType) {
|
|
314
|
+
EventType["BOUNCE"] = "bounce";
|
|
315
|
+
EventType["CLICK"] = "click";
|
|
316
|
+
EventType["COMPLAINT"] = "complaint";
|
|
317
|
+
EventType["DELIVERY"] = "delivery";
|
|
318
|
+
EventType["OPEN"] = "open";
|
|
319
|
+
EventType["REJECT"] = "reject";
|
|
320
|
+
EventType["RENDERING_FAILURE"] = "renderingFailure";
|
|
321
|
+
EventType["SEND"] = "send";
|
|
322
|
+
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
323
|
+
var SNSDestination;
|
|
324
|
+
(function (SNSDestination) {
|
|
325
|
+
/**
|
|
326
|
+
* @internal
|
|
327
|
+
*/
|
|
328
|
+
SNSDestination.filterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
})(SNSDestination = exports.SNSDestination || (exports.SNSDestination = {}));
|
|
332
|
+
var EventDestination;
|
|
333
|
+
(function (EventDestination) {
|
|
334
|
+
/**
|
|
335
|
+
* @internal
|
|
336
|
+
*/
|
|
337
|
+
EventDestination.filterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
});
|
|
340
|
+
})(EventDestination = exports.EventDestination || (exports.EventDestination = {}));
|
|
341
|
+
var CreateConfigurationSetEventDestinationRequest;
|
|
342
|
+
(function (CreateConfigurationSetEventDestinationRequest) {
|
|
343
|
+
/**
|
|
344
|
+
* @internal
|
|
345
|
+
*/
|
|
346
|
+
CreateConfigurationSetEventDestinationRequest.filterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
})(CreateConfigurationSetEventDestinationRequest = exports.CreateConfigurationSetEventDestinationRequest || (exports.CreateConfigurationSetEventDestinationRequest = {}));
|
|
350
|
+
var CreateConfigurationSetEventDestinationResponse;
|
|
351
|
+
(function (CreateConfigurationSetEventDestinationResponse) {
|
|
352
|
+
/**
|
|
353
|
+
* @internal
|
|
354
|
+
*/
|
|
355
|
+
CreateConfigurationSetEventDestinationResponse.filterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
})(CreateConfigurationSetEventDestinationResponse = exports.CreateConfigurationSetEventDestinationResponse || (exports.CreateConfigurationSetEventDestinationResponse = {}));
|
|
359
|
+
var EventDestinationAlreadyExistsException;
|
|
360
|
+
(function (EventDestinationAlreadyExistsException) {
|
|
361
|
+
/**
|
|
362
|
+
* @internal
|
|
363
|
+
*/
|
|
364
|
+
EventDestinationAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
})(EventDestinationAlreadyExistsException = exports.EventDestinationAlreadyExistsException || (exports.EventDestinationAlreadyExistsException = {}));
|
|
368
|
+
var InvalidCloudWatchDestinationException;
|
|
369
|
+
(function (InvalidCloudWatchDestinationException) {
|
|
370
|
+
/**
|
|
371
|
+
* @internal
|
|
372
|
+
*/
|
|
373
|
+
InvalidCloudWatchDestinationException.filterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
})(InvalidCloudWatchDestinationException = exports.InvalidCloudWatchDestinationException || (exports.InvalidCloudWatchDestinationException = {}));
|
|
377
|
+
var InvalidFirehoseDestinationException;
|
|
378
|
+
(function (InvalidFirehoseDestinationException) {
|
|
379
|
+
/**
|
|
380
|
+
* @internal
|
|
381
|
+
*/
|
|
382
|
+
InvalidFirehoseDestinationException.filterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
})(InvalidFirehoseDestinationException = exports.InvalidFirehoseDestinationException || (exports.InvalidFirehoseDestinationException = {}));
|
|
386
|
+
var InvalidSNSDestinationException;
|
|
387
|
+
(function (InvalidSNSDestinationException) {
|
|
388
|
+
/**
|
|
389
|
+
* @internal
|
|
390
|
+
*/
|
|
391
|
+
InvalidSNSDestinationException.filterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
});
|
|
394
|
+
})(InvalidSNSDestinationException = exports.InvalidSNSDestinationException || (exports.InvalidSNSDestinationException = {}));
|
|
395
|
+
var TrackingOptions;
|
|
396
|
+
(function (TrackingOptions) {
|
|
397
|
+
/**
|
|
398
|
+
* @internal
|
|
399
|
+
*/
|
|
400
|
+
TrackingOptions.filterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
});
|
|
403
|
+
})(TrackingOptions = exports.TrackingOptions || (exports.TrackingOptions = {}));
|
|
404
|
+
var CreateConfigurationSetTrackingOptionsRequest;
|
|
405
|
+
(function (CreateConfigurationSetTrackingOptionsRequest) {
|
|
406
|
+
/**
|
|
407
|
+
* @internal
|
|
408
|
+
*/
|
|
409
|
+
CreateConfigurationSetTrackingOptionsRequest.filterSensitiveLog = (obj) => ({
|
|
410
|
+
...obj,
|
|
411
|
+
});
|
|
412
|
+
})(CreateConfigurationSetTrackingOptionsRequest = exports.CreateConfigurationSetTrackingOptionsRequest || (exports.CreateConfigurationSetTrackingOptionsRequest = {}));
|
|
413
|
+
var CreateConfigurationSetTrackingOptionsResponse;
|
|
414
|
+
(function (CreateConfigurationSetTrackingOptionsResponse) {
|
|
415
|
+
/**
|
|
416
|
+
* @internal
|
|
417
|
+
*/
|
|
418
|
+
CreateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = (obj) => ({
|
|
419
|
+
...obj,
|
|
420
|
+
});
|
|
421
|
+
})(CreateConfigurationSetTrackingOptionsResponse = exports.CreateConfigurationSetTrackingOptionsResponse || (exports.CreateConfigurationSetTrackingOptionsResponse = {}));
|
|
422
|
+
var InvalidTrackingOptionsException;
|
|
423
|
+
(function (InvalidTrackingOptionsException) {
|
|
424
|
+
/**
|
|
425
|
+
* @internal
|
|
426
|
+
*/
|
|
427
|
+
InvalidTrackingOptionsException.filterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
});
|
|
430
|
+
})(InvalidTrackingOptionsException = exports.InvalidTrackingOptionsException || (exports.InvalidTrackingOptionsException = {}));
|
|
431
|
+
var TrackingOptionsAlreadyExistsException;
|
|
432
|
+
(function (TrackingOptionsAlreadyExistsException) {
|
|
433
|
+
/**
|
|
434
|
+
* @internal
|
|
435
|
+
*/
|
|
436
|
+
TrackingOptionsAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
437
|
+
...obj,
|
|
438
|
+
});
|
|
439
|
+
})(TrackingOptionsAlreadyExistsException = exports.TrackingOptionsAlreadyExistsException || (exports.TrackingOptionsAlreadyExistsException = {}));
|
|
440
|
+
var CreateCustomVerificationEmailTemplateRequest;
|
|
441
|
+
(function (CreateCustomVerificationEmailTemplateRequest) {
|
|
442
|
+
/**
|
|
443
|
+
* @internal
|
|
444
|
+
*/
|
|
445
|
+
CreateCustomVerificationEmailTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
446
|
+
...obj,
|
|
447
|
+
});
|
|
448
|
+
})(CreateCustomVerificationEmailTemplateRequest = exports.CreateCustomVerificationEmailTemplateRequest || (exports.CreateCustomVerificationEmailTemplateRequest = {}));
|
|
449
|
+
var CustomVerificationEmailInvalidContentException;
|
|
450
|
+
(function (CustomVerificationEmailInvalidContentException) {
|
|
451
|
+
/**
|
|
452
|
+
* @internal
|
|
453
|
+
*/
|
|
454
|
+
CustomVerificationEmailInvalidContentException.filterSensitiveLog = (obj) => ({
|
|
455
|
+
...obj,
|
|
456
|
+
});
|
|
457
|
+
})(CustomVerificationEmailInvalidContentException = exports.CustomVerificationEmailInvalidContentException || (exports.CustomVerificationEmailInvalidContentException = {}));
|
|
458
|
+
var CustomVerificationEmailTemplateAlreadyExistsException;
|
|
459
|
+
(function (CustomVerificationEmailTemplateAlreadyExistsException) {
|
|
460
|
+
/**
|
|
461
|
+
* @internal
|
|
462
|
+
*/
|
|
463
|
+
CustomVerificationEmailTemplateAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
464
|
+
...obj,
|
|
465
|
+
});
|
|
466
|
+
})(CustomVerificationEmailTemplateAlreadyExistsException = exports.CustomVerificationEmailTemplateAlreadyExistsException || (exports.CustomVerificationEmailTemplateAlreadyExistsException = {}));
|
|
467
|
+
var FromEmailAddressNotVerifiedException;
|
|
468
|
+
(function (FromEmailAddressNotVerifiedException) {
|
|
469
|
+
/**
|
|
470
|
+
* @internal
|
|
471
|
+
*/
|
|
472
|
+
FromEmailAddressNotVerifiedException.filterSensitiveLog = (obj) => ({
|
|
473
|
+
...obj,
|
|
474
|
+
});
|
|
475
|
+
})(FromEmailAddressNotVerifiedException = exports.FromEmailAddressNotVerifiedException || (exports.FromEmailAddressNotVerifiedException = {}));
|
|
476
|
+
var ReceiptFilterPolicy;
|
|
477
|
+
(function (ReceiptFilterPolicy) {
|
|
478
|
+
ReceiptFilterPolicy["Allow"] = "Allow";
|
|
479
|
+
ReceiptFilterPolicy["Block"] = "Block";
|
|
480
|
+
})(ReceiptFilterPolicy = exports.ReceiptFilterPolicy || (exports.ReceiptFilterPolicy = {}));
|
|
481
|
+
var ReceiptIpFilter;
|
|
482
|
+
(function (ReceiptIpFilter) {
|
|
483
|
+
/**
|
|
484
|
+
* @internal
|
|
485
|
+
*/
|
|
486
|
+
ReceiptIpFilter.filterSensitiveLog = (obj) => ({
|
|
487
|
+
...obj,
|
|
488
|
+
});
|
|
489
|
+
})(ReceiptIpFilter = exports.ReceiptIpFilter || (exports.ReceiptIpFilter = {}));
|
|
490
|
+
var ReceiptFilter;
|
|
491
|
+
(function (ReceiptFilter) {
|
|
492
|
+
/**
|
|
493
|
+
* @internal
|
|
494
|
+
*/
|
|
495
|
+
ReceiptFilter.filterSensitiveLog = (obj) => ({
|
|
496
|
+
...obj,
|
|
497
|
+
});
|
|
498
|
+
})(ReceiptFilter = exports.ReceiptFilter || (exports.ReceiptFilter = {}));
|
|
499
|
+
var CreateReceiptFilterRequest;
|
|
500
|
+
(function (CreateReceiptFilterRequest) {
|
|
501
|
+
/**
|
|
502
|
+
* @internal
|
|
503
|
+
*/
|
|
504
|
+
CreateReceiptFilterRequest.filterSensitiveLog = (obj) => ({
|
|
505
|
+
...obj,
|
|
506
|
+
});
|
|
507
|
+
})(CreateReceiptFilterRequest = exports.CreateReceiptFilterRequest || (exports.CreateReceiptFilterRequest = {}));
|
|
508
|
+
var CreateReceiptFilterResponse;
|
|
509
|
+
(function (CreateReceiptFilterResponse) {
|
|
510
|
+
/**
|
|
511
|
+
* @internal
|
|
512
|
+
*/
|
|
513
|
+
CreateReceiptFilterResponse.filterSensitiveLog = (obj) => ({
|
|
514
|
+
...obj,
|
|
515
|
+
});
|
|
516
|
+
})(CreateReceiptFilterResponse = exports.CreateReceiptFilterResponse || (exports.CreateReceiptFilterResponse = {}));
|
|
517
|
+
var LambdaAction;
|
|
518
|
+
(function (LambdaAction) {
|
|
519
|
+
/**
|
|
520
|
+
* @internal
|
|
521
|
+
*/
|
|
522
|
+
LambdaAction.filterSensitiveLog = (obj) => ({
|
|
523
|
+
...obj,
|
|
524
|
+
});
|
|
525
|
+
})(LambdaAction = exports.LambdaAction || (exports.LambdaAction = {}));
|
|
526
|
+
var S3Action;
|
|
527
|
+
(function (S3Action) {
|
|
528
|
+
/**
|
|
529
|
+
* @internal
|
|
530
|
+
*/
|
|
531
|
+
S3Action.filterSensitiveLog = (obj) => ({
|
|
532
|
+
...obj,
|
|
533
|
+
});
|
|
534
|
+
})(S3Action = exports.S3Action || (exports.S3Action = {}));
|
|
535
|
+
var SNSActionEncoding;
|
|
536
|
+
(function (SNSActionEncoding) {
|
|
537
|
+
SNSActionEncoding["Base64"] = "Base64";
|
|
538
|
+
SNSActionEncoding["UTF8"] = "UTF-8";
|
|
539
|
+
})(SNSActionEncoding = exports.SNSActionEncoding || (exports.SNSActionEncoding = {}));
|
|
540
|
+
var SNSAction;
|
|
541
|
+
(function (SNSAction) {
|
|
542
|
+
/**
|
|
543
|
+
* @internal
|
|
544
|
+
*/
|
|
545
|
+
SNSAction.filterSensitiveLog = (obj) => ({
|
|
546
|
+
...obj,
|
|
547
|
+
});
|
|
548
|
+
})(SNSAction = exports.SNSAction || (exports.SNSAction = {}));
|
|
549
|
+
var StopScope;
|
|
550
|
+
(function (StopScope) {
|
|
551
|
+
StopScope["RULE_SET"] = "RuleSet";
|
|
552
|
+
})(StopScope = exports.StopScope || (exports.StopScope = {}));
|
|
553
|
+
var StopAction;
|
|
554
|
+
(function (StopAction) {
|
|
555
|
+
/**
|
|
556
|
+
* @internal
|
|
557
|
+
*/
|
|
558
|
+
StopAction.filterSensitiveLog = (obj) => ({
|
|
559
|
+
...obj,
|
|
560
|
+
});
|
|
561
|
+
})(StopAction = exports.StopAction || (exports.StopAction = {}));
|
|
562
|
+
var WorkmailAction;
|
|
563
|
+
(function (WorkmailAction) {
|
|
564
|
+
/**
|
|
565
|
+
* @internal
|
|
566
|
+
*/
|
|
567
|
+
WorkmailAction.filterSensitiveLog = (obj) => ({
|
|
568
|
+
...obj,
|
|
569
|
+
});
|
|
570
|
+
})(WorkmailAction = exports.WorkmailAction || (exports.WorkmailAction = {}));
|
|
571
|
+
var ReceiptAction;
|
|
572
|
+
(function (ReceiptAction) {
|
|
573
|
+
/**
|
|
574
|
+
* @internal
|
|
575
|
+
*/
|
|
576
|
+
ReceiptAction.filterSensitiveLog = (obj) => ({
|
|
577
|
+
...obj,
|
|
578
|
+
});
|
|
579
|
+
})(ReceiptAction = exports.ReceiptAction || (exports.ReceiptAction = {}));
|
|
580
|
+
var TlsPolicy;
|
|
581
|
+
(function (TlsPolicy) {
|
|
582
|
+
TlsPolicy["Optional"] = "Optional";
|
|
583
|
+
TlsPolicy["Require"] = "Require";
|
|
584
|
+
})(TlsPolicy = exports.TlsPolicy || (exports.TlsPolicy = {}));
|
|
585
|
+
var ReceiptRule;
|
|
586
|
+
(function (ReceiptRule) {
|
|
587
|
+
/**
|
|
588
|
+
* @internal
|
|
589
|
+
*/
|
|
590
|
+
ReceiptRule.filterSensitiveLog = (obj) => ({
|
|
591
|
+
...obj,
|
|
592
|
+
});
|
|
593
|
+
})(ReceiptRule = exports.ReceiptRule || (exports.ReceiptRule = {}));
|
|
594
|
+
var CreateReceiptRuleRequest;
|
|
595
|
+
(function (CreateReceiptRuleRequest) {
|
|
596
|
+
/**
|
|
597
|
+
* @internal
|
|
598
|
+
*/
|
|
599
|
+
CreateReceiptRuleRequest.filterSensitiveLog = (obj) => ({
|
|
600
|
+
...obj,
|
|
601
|
+
});
|
|
602
|
+
})(CreateReceiptRuleRequest = exports.CreateReceiptRuleRequest || (exports.CreateReceiptRuleRequest = {}));
|
|
603
|
+
var CreateReceiptRuleResponse;
|
|
604
|
+
(function (CreateReceiptRuleResponse) {
|
|
605
|
+
/**
|
|
606
|
+
* @internal
|
|
607
|
+
*/
|
|
608
|
+
CreateReceiptRuleResponse.filterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
})(CreateReceiptRuleResponse = exports.CreateReceiptRuleResponse || (exports.CreateReceiptRuleResponse = {}));
|
|
612
|
+
var InvalidLambdaFunctionException;
|
|
613
|
+
(function (InvalidLambdaFunctionException) {
|
|
614
|
+
/**
|
|
615
|
+
* @internal
|
|
616
|
+
*/
|
|
617
|
+
InvalidLambdaFunctionException.filterSensitiveLog = (obj) => ({
|
|
618
|
+
...obj,
|
|
619
|
+
});
|
|
620
|
+
})(InvalidLambdaFunctionException = exports.InvalidLambdaFunctionException || (exports.InvalidLambdaFunctionException = {}));
|
|
621
|
+
var InvalidS3ConfigurationException;
|
|
622
|
+
(function (InvalidS3ConfigurationException) {
|
|
623
|
+
/**
|
|
624
|
+
* @internal
|
|
625
|
+
*/
|
|
626
|
+
InvalidS3ConfigurationException.filterSensitiveLog = (obj) => ({
|
|
627
|
+
...obj,
|
|
628
|
+
});
|
|
629
|
+
})(InvalidS3ConfigurationException = exports.InvalidS3ConfigurationException || (exports.InvalidS3ConfigurationException = {}));
|
|
630
|
+
var InvalidSnsTopicException;
|
|
631
|
+
(function (InvalidSnsTopicException) {
|
|
632
|
+
/**
|
|
633
|
+
* @internal
|
|
634
|
+
*/
|
|
635
|
+
InvalidSnsTopicException.filterSensitiveLog = (obj) => ({
|
|
636
|
+
...obj,
|
|
637
|
+
});
|
|
638
|
+
})(InvalidSnsTopicException = exports.InvalidSnsTopicException || (exports.InvalidSnsTopicException = {}));
|
|
639
|
+
var RuleDoesNotExistException;
|
|
640
|
+
(function (RuleDoesNotExistException) {
|
|
641
|
+
/**
|
|
642
|
+
* @internal
|
|
643
|
+
*/
|
|
644
|
+
RuleDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|
|
647
|
+
})(RuleDoesNotExistException = exports.RuleDoesNotExistException || (exports.RuleDoesNotExistException = {}));
|
|
648
|
+
var CreateReceiptRuleSetRequest;
|
|
649
|
+
(function (CreateReceiptRuleSetRequest) {
|
|
650
|
+
/**
|
|
651
|
+
* @internal
|
|
652
|
+
*/
|
|
653
|
+
CreateReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
654
|
+
...obj,
|
|
655
|
+
});
|
|
656
|
+
})(CreateReceiptRuleSetRequest = exports.CreateReceiptRuleSetRequest || (exports.CreateReceiptRuleSetRequest = {}));
|
|
657
|
+
var CreateReceiptRuleSetResponse;
|
|
658
|
+
(function (CreateReceiptRuleSetResponse) {
|
|
659
|
+
/**
|
|
660
|
+
* @internal
|
|
661
|
+
*/
|
|
662
|
+
CreateReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
663
|
+
...obj,
|
|
664
|
+
});
|
|
665
|
+
})(CreateReceiptRuleSetResponse = exports.CreateReceiptRuleSetResponse || (exports.CreateReceiptRuleSetResponse = {}));
|
|
666
|
+
var Template;
|
|
667
|
+
(function (Template) {
|
|
668
|
+
/**
|
|
669
|
+
* @internal
|
|
670
|
+
*/
|
|
671
|
+
Template.filterSensitiveLog = (obj) => ({
|
|
672
|
+
...obj,
|
|
673
|
+
});
|
|
674
|
+
})(Template = exports.Template || (exports.Template = {}));
|
|
675
|
+
var CreateTemplateRequest;
|
|
676
|
+
(function (CreateTemplateRequest) {
|
|
677
|
+
/**
|
|
678
|
+
* @internal
|
|
679
|
+
*/
|
|
680
|
+
CreateTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
681
|
+
...obj,
|
|
682
|
+
});
|
|
683
|
+
})(CreateTemplateRequest = exports.CreateTemplateRequest || (exports.CreateTemplateRequest = {}));
|
|
684
|
+
var CreateTemplateResponse;
|
|
685
|
+
(function (CreateTemplateResponse) {
|
|
686
|
+
/**
|
|
687
|
+
* @internal
|
|
688
|
+
*/
|
|
689
|
+
CreateTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
690
|
+
...obj,
|
|
691
|
+
});
|
|
692
|
+
})(CreateTemplateResponse = exports.CreateTemplateResponse || (exports.CreateTemplateResponse = {}));
|
|
693
|
+
var InvalidTemplateException;
|
|
694
|
+
(function (InvalidTemplateException) {
|
|
695
|
+
/**
|
|
696
|
+
* @internal
|
|
697
|
+
*/
|
|
698
|
+
InvalidTemplateException.filterSensitiveLog = (obj) => ({
|
|
699
|
+
...obj,
|
|
700
|
+
});
|
|
701
|
+
})(InvalidTemplateException = exports.InvalidTemplateException || (exports.InvalidTemplateException = {}));
|
|
702
|
+
var CustomMailFromStatus;
|
|
703
|
+
(function (CustomMailFromStatus) {
|
|
704
|
+
CustomMailFromStatus["Failed"] = "Failed";
|
|
705
|
+
CustomMailFromStatus["Pending"] = "Pending";
|
|
706
|
+
CustomMailFromStatus["Success"] = "Success";
|
|
707
|
+
CustomMailFromStatus["TemporaryFailure"] = "TemporaryFailure";
|
|
708
|
+
})(CustomMailFromStatus = exports.CustomMailFromStatus || (exports.CustomMailFromStatus = {}));
|
|
709
|
+
var CustomVerificationEmailTemplate;
|
|
710
|
+
(function (CustomVerificationEmailTemplate) {
|
|
711
|
+
/**
|
|
712
|
+
* @internal
|
|
713
|
+
*/
|
|
714
|
+
CustomVerificationEmailTemplate.filterSensitiveLog = (obj) => ({
|
|
715
|
+
...obj,
|
|
716
|
+
});
|
|
717
|
+
})(CustomVerificationEmailTemplate = exports.CustomVerificationEmailTemplate || (exports.CustomVerificationEmailTemplate = {}));
|
|
718
|
+
var CustomVerificationEmailTemplateDoesNotExistException;
|
|
719
|
+
(function (CustomVerificationEmailTemplateDoesNotExistException) {
|
|
720
|
+
/**
|
|
721
|
+
* @internal
|
|
722
|
+
*/
|
|
723
|
+
CustomVerificationEmailTemplateDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
724
|
+
...obj,
|
|
725
|
+
});
|
|
726
|
+
})(CustomVerificationEmailTemplateDoesNotExistException = exports.CustomVerificationEmailTemplateDoesNotExistException || (exports.CustomVerificationEmailTemplateDoesNotExistException = {}));
|
|
727
|
+
var DeleteConfigurationSetRequest;
|
|
728
|
+
(function (DeleteConfigurationSetRequest) {
|
|
729
|
+
/**
|
|
730
|
+
* @internal
|
|
731
|
+
*/
|
|
732
|
+
DeleteConfigurationSetRequest.filterSensitiveLog = (obj) => ({
|
|
733
|
+
...obj,
|
|
734
|
+
});
|
|
735
|
+
})(DeleteConfigurationSetRequest = exports.DeleteConfigurationSetRequest || (exports.DeleteConfigurationSetRequest = {}));
|
|
736
|
+
var DeleteConfigurationSetResponse;
|
|
737
|
+
(function (DeleteConfigurationSetResponse) {
|
|
738
|
+
/**
|
|
739
|
+
* @internal
|
|
740
|
+
*/
|
|
741
|
+
DeleteConfigurationSetResponse.filterSensitiveLog = (obj) => ({
|
|
742
|
+
...obj,
|
|
743
|
+
});
|
|
744
|
+
})(DeleteConfigurationSetResponse = exports.DeleteConfigurationSetResponse || (exports.DeleteConfigurationSetResponse = {}));
|
|
745
|
+
var DeleteConfigurationSetEventDestinationRequest;
|
|
746
|
+
(function (DeleteConfigurationSetEventDestinationRequest) {
|
|
747
|
+
/**
|
|
748
|
+
* @internal
|
|
749
|
+
*/
|
|
750
|
+
DeleteConfigurationSetEventDestinationRequest.filterSensitiveLog = (obj) => ({
|
|
751
|
+
...obj,
|
|
752
|
+
});
|
|
753
|
+
})(DeleteConfigurationSetEventDestinationRequest = exports.DeleteConfigurationSetEventDestinationRequest || (exports.DeleteConfigurationSetEventDestinationRequest = {}));
|
|
754
|
+
var DeleteConfigurationSetEventDestinationResponse;
|
|
755
|
+
(function (DeleteConfigurationSetEventDestinationResponse) {
|
|
756
|
+
/**
|
|
757
|
+
* @internal
|
|
758
|
+
*/
|
|
759
|
+
DeleteConfigurationSetEventDestinationResponse.filterSensitiveLog = (obj) => ({
|
|
760
|
+
...obj,
|
|
761
|
+
});
|
|
762
|
+
})(DeleteConfigurationSetEventDestinationResponse = exports.DeleteConfigurationSetEventDestinationResponse || (exports.DeleteConfigurationSetEventDestinationResponse = {}));
|
|
763
|
+
var EventDestinationDoesNotExistException;
|
|
764
|
+
(function (EventDestinationDoesNotExistException) {
|
|
765
|
+
/**
|
|
766
|
+
* @internal
|
|
767
|
+
*/
|
|
768
|
+
EventDestinationDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
769
|
+
...obj,
|
|
770
|
+
});
|
|
771
|
+
})(EventDestinationDoesNotExistException = exports.EventDestinationDoesNotExistException || (exports.EventDestinationDoesNotExistException = {}));
|
|
772
|
+
var DeleteConfigurationSetTrackingOptionsRequest;
|
|
773
|
+
(function (DeleteConfigurationSetTrackingOptionsRequest) {
|
|
774
|
+
/**
|
|
775
|
+
* @internal
|
|
776
|
+
*/
|
|
777
|
+
DeleteConfigurationSetTrackingOptionsRequest.filterSensitiveLog = (obj) => ({
|
|
778
|
+
...obj,
|
|
779
|
+
});
|
|
780
|
+
})(DeleteConfigurationSetTrackingOptionsRequest = exports.DeleteConfigurationSetTrackingOptionsRequest || (exports.DeleteConfigurationSetTrackingOptionsRequest = {}));
|
|
781
|
+
var DeleteConfigurationSetTrackingOptionsResponse;
|
|
782
|
+
(function (DeleteConfigurationSetTrackingOptionsResponse) {
|
|
783
|
+
/**
|
|
784
|
+
* @internal
|
|
785
|
+
*/
|
|
786
|
+
DeleteConfigurationSetTrackingOptionsResponse.filterSensitiveLog = (obj) => ({
|
|
787
|
+
...obj,
|
|
788
|
+
});
|
|
789
|
+
})(DeleteConfigurationSetTrackingOptionsResponse = exports.DeleteConfigurationSetTrackingOptionsResponse || (exports.DeleteConfigurationSetTrackingOptionsResponse = {}));
|
|
790
|
+
var TrackingOptionsDoesNotExistException;
|
|
791
|
+
(function (TrackingOptionsDoesNotExistException) {
|
|
792
|
+
/**
|
|
793
|
+
* @internal
|
|
794
|
+
*/
|
|
795
|
+
TrackingOptionsDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
796
|
+
...obj,
|
|
797
|
+
});
|
|
798
|
+
})(TrackingOptionsDoesNotExistException = exports.TrackingOptionsDoesNotExistException || (exports.TrackingOptionsDoesNotExistException = {}));
|
|
799
|
+
var DeleteCustomVerificationEmailTemplateRequest;
|
|
800
|
+
(function (DeleteCustomVerificationEmailTemplateRequest) {
|
|
801
|
+
/**
|
|
802
|
+
* @internal
|
|
803
|
+
*/
|
|
804
|
+
DeleteCustomVerificationEmailTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
805
|
+
...obj,
|
|
806
|
+
});
|
|
807
|
+
})(DeleteCustomVerificationEmailTemplateRequest = exports.DeleteCustomVerificationEmailTemplateRequest || (exports.DeleteCustomVerificationEmailTemplateRequest = {}));
|
|
808
|
+
var DeleteIdentityRequest;
|
|
809
|
+
(function (DeleteIdentityRequest) {
|
|
810
|
+
/**
|
|
811
|
+
* @internal
|
|
812
|
+
*/
|
|
813
|
+
DeleteIdentityRequest.filterSensitiveLog = (obj) => ({
|
|
814
|
+
...obj,
|
|
815
|
+
});
|
|
816
|
+
})(DeleteIdentityRequest = exports.DeleteIdentityRequest || (exports.DeleteIdentityRequest = {}));
|
|
817
|
+
var DeleteIdentityResponse;
|
|
818
|
+
(function (DeleteIdentityResponse) {
|
|
819
|
+
/**
|
|
820
|
+
* @internal
|
|
821
|
+
*/
|
|
822
|
+
DeleteIdentityResponse.filterSensitiveLog = (obj) => ({
|
|
823
|
+
...obj,
|
|
824
|
+
});
|
|
825
|
+
})(DeleteIdentityResponse = exports.DeleteIdentityResponse || (exports.DeleteIdentityResponse = {}));
|
|
826
|
+
var DeleteIdentityPolicyRequest;
|
|
827
|
+
(function (DeleteIdentityPolicyRequest) {
|
|
828
|
+
/**
|
|
829
|
+
* @internal
|
|
830
|
+
*/
|
|
831
|
+
DeleteIdentityPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
832
|
+
...obj,
|
|
833
|
+
});
|
|
834
|
+
})(DeleteIdentityPolicyRequest = exports.DeleteIdentityPolicyRequest || (exports.DeleteIdentityPolicyRequest = {}));
|
|
835
|
+
var DeleteIdentityPolicyResponse;
|
|
836
|
+
(function (DeleteIdentityPolicyResponse) {
|
|
837
|
+
/**
|
|
838
|
+
* @internal
|
|
839
|
+
*/
|
|
840
|
+
DeleteIdentityPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
841
|
+
...obj,
|
|
842
|
+
});
|
|
843
|
+
})(DeleteIdentityPolicyResponse = exports.DeleteIdentityPolicyResponse || (exports.DeleteIdentityPolicyResponse = {}));
|
|
844
|
+
var DeleteReceiptFilterRequest;
|
|
845
|
+
(function (DeleteReceiptFilterRequest) {
|
|
846
|
+
/**
|
|
847
|
+
* @internal
|
|
848
|
+
*/
|
|
849
|
+
DeleteReceiptFilterRequest.filterSensitiveLog = (obj) => ({
|
|
850
|
+
...obj,
|
|
851
|
+
});
|
|
852
|
+
})(DeleteReceiptFilterRequest = exports.DeleteReceiptFilterRequest || (exports.DeleteReceiptFilterRequest = {}));
|
|
853
|
+
var DeleteReceiptFilterResponse;
|
|
854
|
+
(function (DeleteReceiptFilterResponse) {
|
|
855
|
+
/**
|
|
856
|
+
* @internal
|
|
857
|
+
*/
|
|
858
|
+
DeleteReceiptFilterResponse.filterSensitiveLog = (obj) => ({
|
|
859
|
+
...obj,
|
|
860
|
+
});
|
|
861
|
+
})(DeleteReceiptFilterResponse = exports.DeleteReceiptFilterResponse || (exports.DeleteReceiptFilterResponse = {}));
|
|
862
|
+
var DeleteReceiptRuleRequest;
|
|
863
|
+
(function (DeleteReceiptRuleRequest) {
|
|
864
|
+
/**
|
|
865
|
+
* @internal
|
|
866
|
+
*/
|
|
867
|
+
DeleteReceiptRuleRequest.filterSensitiveLog = (obj) => ({
|
|
868
|
+
...obj,
|
|
869
|
+
});
|
|
870
|
+
})(DeleteReceiptRuleRequest = exports.DeleteReceiptRuleRequest || (exports.DeleteReceiptRuleRequest = {}));
|
|
871
|
+
var DeleteReceiptRuleResponse;
|
|
872
|
+
(function (DeleteReceiptRuleResponse) {
|
|
873
|
+
/**
|
|
874
|
+
* @internal
|
|
875
|
+
*/
|
|
876
|
+
DeleteReceiptRuleResponse.filterSensitiveLog = (obj) => ({
|
|
877
|
+
...obj,
|
|
878
|
+
});
|
|
879
|
+
})(DeleteReceiptRuleResponse = exports.DeleteReceiptRuleResponse || (exports.DeleteReceiptRuleResponse = {}));
|
|
880
|
+
var DeleteReceiptRuleSetRequest;
|
|
881
|
+
(function (DeleteReceiptRuleSetRequest) {
|
|
882
|
+
/**
|
|
883
|
+
* @internal
|
|
884
|
+
*/
|
|
885
|
+
DeleteReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
886
|
+
...obj,
|
|
887
|
+
});
|
|
888
|
+
})(DeleteReceiptRuleSetRequest = exports.DeleteReceiptRuleSetRequest || (exports.DeleteReceiptRuleSetRequest = {}));
|
|
889
|
+
var DeleteReceiptRuleSetResponse;
|
|
890
|
+
(function (DeleteReceiptRuleSetResponse) {
|
|
891
|
+
/**
|
|
892
|
+
* @internal
|
|
893
|
+
*/
|
|
894
|
+
DeleteReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
895
|
+
...obj,
|
|
896
|
+
});
|
|
897
|
+
})(DeleteReceiptRuleSetResponse = exports.DeleteReceiptRuleSetResponse || (exports.DeleteReceiptRuleSetResponse = {}));
|
|
898
|
+
var DeleteTemplateRequest;
|
|
899
|
+
(function (DeleteTemplateRequest) {
|
|
900
|
+
/**
|
|
901
|
+
* @internal
|
|
902
|
+
*/
|
|
903
|
+
DeleteTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
904
|
+
...obj,
|
|
905
|
+
});
|
|
906
|
+
})(DeleteTemplateRequest = exports.DeleteTemplateRequest || (exports.DeleteTemplateRequest = {}));
|
|
907
|
+
var DeleteTemplateResponse;
|
|
908
|
+
(function (DeleteTemplateResponse) {
|
|
909
|
+
/**
|
|
910
|
+
* @internal
|
|
911
|
+
*/
|
|
912
|
+
DeleteTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
913
|
+
...obj,
|
|
914
|
+
});
|
|
915
|
+
})(DeleteTemplateResponse = exports.DeleteTemplateResponse || (exports.DeleteTemplateResponse = {}));
|
|
916
|
+
var DeleteVerifiedEmailAddressRequest;
|
|
917
|
+
(function (DeleteVerifiedEmailAddressRequest) {
|
|
918
|
+
/**
|
|
919
|
+
* @internal
|
|
920
|
+
*/
|
|
921
|
+
DeleteVerifiedEmailAddressRequest.filterSensitiveLog = (obj) => ({
|
|
922
|
+
...obj,
|
|
923
|
+
});
|
|
924
|
+
})(DeleteVerifiedEmailAddressRequest = exports.DeleteVerifiedEmailAddressRequest || (exports.DeleteVerifiedEmailAddressRequest = {}));
|
|
925
|
+
var DeliveryOptions;
|
|
926
|
+
(function (DeliveryOptions) {
|
|
927
|
+
/**
|
|
928
|
+
* @internal
|
|
929
|
+
*/
|
|
930
|
+
DeliveryOptions.filterSensitiveLog = (obj) => ({
|
|
931
|
+
...obj,
|
|
932
|
+
});
|
|
933
|
+
})(DeliveryOptions = exports.DeliveryOptions || (exports.DeliveryOptions = {}));
|
|
934
|
+
var DescribeActiveReceiptRuleSetRequest;
|
|
935
|
+
(function (DescribeActiveReceiptRuleSetRequest) {
|
|
936
|
+
/**
|
|
937
|
+
* @internal
|
|
938
|
+
*/
|
|
939
|
+
DescribeActiveReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
940
|
+
...obj,
|
|
941
|
+
});
|
|
942
|
+
})(DescribeActiveReceiptRuleSetRequest = exports.DescribeActiveReceiptRuleSetRequest || (exports.DescribeActiveReceiptRuleSetRequest = {}));
|
|
943
|
+
var ReceiptRuleSetMetadata;
|
|
944
|
+
(function (ReceiptRuleSetMetadata) {
|
|
945
|
+
/**
|
|
946
|
+
* @internal
|
|
947
|
+
*/
|
|
948
|
+
ReceiptRuleSetMetadata.filterSensitiveLog = (obj) => ({
|
|
949
|
+
...obj,
|
|
950
|
+
});
|
|
951
|
+
})(ReceiptRuleSetMetadata = exports.ReceiptRuleSetMetadata || (exports.ReceiptRuleSetMetadata = {}));
|
|
952
|
+
var DescribeActiveReceiptRuleSetResponse;
|
|
953
|
+
(function (DescribeActiveReceiptRuleSetResponse) {
|
|
954
|
+
/**
|
|
955
|
+
* @internal
|
|
956
|
+
*/
|
|
957
|
+
DescribeActiveReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
958
|
+
...obj,
|
|
959
|
+
});
|
|
960
|
+
})(DescribeActiveReceiptRuleSetResponse = exports.DescribeActiveReceiptRuleSetResponse || (exports.DescribeActiveReceiptRuleSetResponse = {}));
|
|
961
|
+
var DescribeConfigurationSetRequest;
|
|
962
|
+
(function (DescribeConfigurationSetRequest) {
|
|
963
|
+
/**
|
|
964
|
+
* @internal
|
|
965
|
+
*/
|
|
966
|
+
DescribeConfigurationSetRequest.filterSensitiveLog = (obj) => ({
|
|
967
|
+
...obj,
|
|
968
|
+
});
|
|
969
|
+
})(DescribeConfigurationSetRequest = exports.DescribeConfigurationSetRequest || (exports.DescribeConfigurationSetRequest = {}));
|
|
970
|
+
var ReputationOptions;
|
|
971
|
+
(function (ReputationOptions) {
|
|
972
|
+
/**
|
|
973
|
+
* @internal
|
|
974
|
+
*/
|
|
975
|
+
ReputationOptions.filterSensitiveLog = (obj) => ({
|
|
976
|
+
...obj,
|
|
977
|
+
});
|
|
978
|
+
})(ReputationOptions = exports.ReputationOptions || (exports.ReputationOptions = {}));
|
|
979
|
+
var DescribeConfigurationSetResponse;
|
|
980
|
+
(function (DescribeConfigurationSetResponse) {
|
|
981
|
+
/**
|
|
982
|
+
* @internal
|
|
983
|
+
*/
|
|
984
|
+
DescribeConfigurationSetResponse.filterSensitiveLog = (obj) => ({
|
|
985
|
+
...obj,
|
|
986
|
+
});
|
|
987
|
+
})(DescribeConfigurationSetResponse = exports.DescribeConfigurationSetResponse || (exports.DescribeConfigurationSetResponse = {}));
|
|
988
|
+
var DescribeReceiptRuleRequest;
|
|
989
|
+
(function (DescribeReceiptRuleRequest) {
|
|
990
|
+
/**
|
|
991
|
+
* @internal
|
|
992
|
+
*/
|
|
993
|
+
DescribeReceiptRuleRequest.filterSensitiveLog = (obj) => ({
|
|
994
|
+
...obj,
|
|
995
|
+
});
|
|
996
|
+
})(DescribeReceiptRuleRequest = exports.DescribeReceiptRuleRequest || (exports.DescribeReceiptRuleRequest = {}));
|
|
997
|
+
var DescribeReceiptRuleResponse;
|
|
998
|
+
(function (DescribeReceiptRuleResponse) {
|
|
999
|
+
/**
|
|
1000
|
+
* @internal
|
|
1001
|
+
*/
|
|
1002
|
+
DescribeReceiptRuleResponse.filterSensitiveLog = (obj) => ({
|
|
1003
|
+
...obj,
|
|
1004
|
+
});
|
|
1005
|
+
})(DescribeReceiptRuleResponse = exports.DescribeReceiptRuleResponse || (exports.DescribeReceiptRuleResponse = {}));
|
|
1006
|
+
var DescribeReceiptRuleSetRequest;
|
|
1007
|
+
(function (DescribeReceiptRuleSetRequest) {
|
|
1008
|
+
/**
|
|
1009
|
+
* @internal
|
|
1010
|
+
*/
|
|
1011
|
+
DescribeReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
1012
|
+
...obj,
|
|
1013
|
+
});
|
|
1014
|
+
})(DescribeReceiptRuleSetRequest = exports.DescribeReceiptRuleSetRequest || (exports.DescribeReceiptRuleSetRequest = {}));
|
|
1015
|
+
var DescribeReceiptRuleSetResponse;
|
|
1016
|
+
(function (DescribeReceiptRuleSetResponse) {
|
|
1017
|
+
/**
|
|
1018
|
+
* @internal
|
|
1019
|
+
*/
|
|
1020
|
+
DescribeReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
1021
|
+
...obj,
|
|
1022
|
+
});
|
|
1023
|
+
})(DescribeReceiptRuleSetResponse = exports.DescribeReceiptRuleSetResponse || (exports.DescribeReceiptRuleSetResponse = {}));
|
|
1024
|
+
var IdentityDkimAttributes;
|
|
1025
|
+
(function (IdentityDkimAttributes) {
|
|
1026
|
+
/**
|
|
1027
|
+
* @internal
|
|
1028
|
+
*/
|
|
1029
|
+
IdentityDkimAttributes.filterSensitiveLog = (obj) => ({
|
|
1030
|
+
...obj,
|
|
1031
|
+
});
|
|
1032
|
+
})(IdentityDkimAttributes = exports.IdentityDkimAttributes || (exports.IdentityDkimAttributes = {}));
|
|
1033
|
+
var GetAccountSendingEnabledResponse;
|
|
1034
|
+
(function (GetAccountSendingEnabledResponse) {
|
|
1035
|
+
/**
|
|
1036
|
+
* @internal
|
|
1037
|
+
*/
|
|
1038
|
+
GetAccountSendingEnabledResponse.filterSensitiveLog = (obj) => ({
|
|
1039
|
+
...obj,
|
|
1040
|
+
});
|
|
1041
|
+
})(GetAccountSendingEnabledResponse = exports.GetAccountSendingEnabledResponse || (exports.GetAccountSendingEnabledResponse = {}));
|
|
1042
|
+
var GetCustomVerificationEmailTemplateRequest;
|
|
1043
|
+
(function (GetCustomVerificationEmailTemplateRequest) {
|
|
1044
|
+
/**
|
|
1045
|
+
* @internal
|
|
1046
|
+
*/
|
|
1047
|
+
GetCustomVerificationEmailTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
1048
|
+
...obj,
|
|
1049
|
+
});
|
|
1050
|
+
})(GetCustomVerificationEmailTemplateRequest = exports.GetCustomVerificationEmailTemplateRequest || (exports.GetCustomVerificationEmailTemplateRequest = {}));
|
|
1051
|
+
var GetCustomVerificationEmailTemplateResponse;
|
|
1052
|
+
(function (GetCustomVerificationEmailTemplateResponse) {
|
|
1053
|
+
/**
|
|
1054
|
+
* @internal
|
|
1055
|
+
*/
|
|
1056
|
+
GetCustomVerificationEmailTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
1057
|
+
...obj,
|
|
1058
|
+
});
|
|
1059
|
+
})(GetCustomVerificationEmailTemplateResponse = exports.GetCustomVerificationEmailTemplateResponse || (exports.GetCustomVerificationEmailTemplateResponse = {}));
|
|
1060
|
+
var GetIdentityDkimAttributesRequest;
|
|
1061
|
+
(function (GetIdentityDkimAttributesRequest) {
|
|
1062
|
+
/**
|
|
1063
|
+
* @internal
|
|
1064
|
+
*/
|
|
1065
|
+
GetIdentityDkimAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
1066
|
+
...obj,
|
|
1067
|
+
});
|
|
1068
|
+
})(GetIdentityDkimAttributesRequest = exports.GetIdentityDkimAttributesRequest || (exports.GetIdentityDkimAttributesRequest = {}));
|
|
1069
|
+
var GetIdentityDkimAttributesResponse;
|
|
1070
|
+
(function (GetIdentityDkimAttributesResponse) {
|
|
1071
|
+
/**
|
|
1072
|
+
* @internal
|
|
1073
|
+
*/
|
|
1074
|
+
GetIdentityDkimAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1075
|
+
...obj,
|
|
1076
|
+
});
|
|
1077
|
+
})(GetIdentityDkimAttributesResponse = exports.GetIdentityDkimAttributesResponse || (exports.GetIdentityDkimAttributesResponse = {}));
|
|
1078
|
+
var GetIdentityMailFromDomainAttributesRequest;
|
|
1079
|
+
(function (GetIdentityMailFromDomainAttributesRequest) {
|
|
1080
|
+
/**
|
|
1081
|
+
* @internal
|
|
1082
|
+
*/
|
|
1083
|
+
GetIdentityMailFromDomainAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
1084
|
+
...obj,
|
|
1085
|
+
});
|
|
1086
|
+
})(GetIdentityMailFromDomainAttributesRequest = exports.GetIdentityMailFromDomainAttributesRequest || (exports.GetIdentityMailFromDomainAttributesRequest = {}));
|
|
1087
|
+
var IdentityMailFromDomainAttributes;
|
|
1088
|
+
(function (IdentityMailFromDomainAttributes) {
|
|
1089
|
+
/**
|
|
1090
|
+
* @internal
|
|
1091
|
+
*/
|
|
1092
|
+
IdentityMailFromDomainAttributes.filterSensitiveLog = (obj) => ({
|
|
1093
|
+
...obj,
|
|
1094
|
+
});
|
|
1095
|
+
})(IdentityMailFromDomainAttributes = exports.IdentityMailFromDomainAttributes || (exports.IdentityMailFromDomainAttributes = {}));
|
|
1096
|
+
var GetIdentityMailFromDomainAttributesResponse;
|
|
1097
|
+
(function (GetIdentityMailFromDomainAttributesResponse) {
|
|
1098
|
+
/**
|
|
1099
|
+
* @internal
|
|
1100
|
+
*/
|
|
1101
|
+
GetIdentityMailFromDomainAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1102
|
+
...obj,
|
|
1103
|
+
});
|
|
1104
|
+
})(GetIdentityMailFromDomainAttributesResponse = exports.GetIdentityMailFromDomainAttributesResponse || (exports.GetIdentityMailFromDomainAttributesResponse = {}));
|
|
1105
|
+
var GetIdentityNotificationAttributesRequest;
|
|
1106
|
+
(function (GetIdentityNotificationAttributesRequest) {
|
|
1107
|
+
/**
|
|
1108
|
+
* @internal
|
|
1109
|
+
*/
|
|
1110
|
+
GetIdentityNotificationAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
1111
|
+
...obj,
|
|
1112
|
+
});
|
|
1113
|
+
})(GetIdentityNotificationAttributesRequest = exports.GetIdentityNotificationAttributesRequest || (exports.GetIdentityNotificationAttributesRequest = {}));
|
|
1114
|
+
var IdentityNotificationAttributes;
|
|
1115
|
+
(function (IdentityNotificationAttributes) {
|
|
1116
|
+
/**
|
|
1117
|
+
* @internal
|
|
1118
|
+
*/
|
|
1119
|
+
IdentityNotificationAttributes.filterSensitiveLog = (obj) => ({
|
|
1120
|
+
...obj,
|
|
1121
|
+
});
|
|
1122
|
+
})(IdentityNotificationAttributes = exports.IdentityNotificationAttributes || (exports.IdentityNotificationAttributes = {}));
|
|
1123
|
+
var GetIdentityNotificationAttributesResponse;
|
|
1124
|
+
(function (GetIdentityNotificationAttributesResponse) {
|
|
1125
|
+
/**
|
|
1126
|
+
* @internal
|
|
1127
|
+
*/
|
|
1128
|
+
GetIdentityNotificationAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1129
|
+
...obj,
|
|
1130
|
+
});
|
|
1131
|
+
})(GetIdentityNotificationAttributesResponse = exports.GetIdentityNotificationAttributesResponse || (exports.GetIdentityNotificationAttributesResponse = {}));
|
|
1132
|
+
var GetIdentityPoliciesRequest;
|
|
1133
|
+
(function (GetIdentityPoliciesRequest) {
|
|
1134
|
+
/**
|
|
1135
|
+
* @internal
|
|
1136
|
+
*/
|
|
1137
|
+
GetIdentityPoliciesRequest.filterSensitiveLog = (obj) => ({
|
|
1138
|
+
...obj,
|
|
1139
|
+
});
|
|
1140
|
+
})(GetIdentityPoliciesRequest = exports.GetIdentityPoliciesRequest || (exports.GetIdentityPoliciesRequest = {}));
|
|
1141
|
+
var GetIdentityPoliciesResponse;
|
|
1142
|
+
(function (GetIdentityPoliciesResponse) {
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal
|
|
1145
|
+
*/
|
|
1146
|
+
GetIdentityPoliciesResponse.filterSensitiveLog = (obj) => ({
|
|
1147
|
+
...obj,
|
|
1148
|
+
});
|
|
1149
|
+
})(GetIdentityPoliciesResponse = exports.GetIdentityPoliciesResponse || (exports.GetIdentityPoliciesResponse = {}));
|
|
1150
|
+
var GetIdentityVerificationAttributesRequest;
|
|
1151
|
+
(function (GetIdentityVerificationAttributesRequest) {
|
|
1152
|
+
/**
|
|
1153
|
+
* @internal
|
|
1154
|
+
*/
|
|
1155
|
+
GetIdentityVerificationAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
1156
|
+
...obj,
|
|
1157
|
+
});
|
|
1158
|
+
})(GetIdentityVerificationAttributesRequest = exports.GetIdentityVerificationAttributesRequest || (exports.GetIdentityVerificationAttributesRequest = {}));
|
|
1159
|
+
var IdentityVerificationAttributes;
|
|
1160
|
+
(function (IdentityVerificationAttributes) {
|
|
1161
|
+
/**
|
|
1162
|
+
* @internal
|
|
1163
|
+
*/
|
|
1164
|
+
IdentityVerificationAttributes.filterSensitiveLog = (obj) => ({
|
|
1165
|
+
...obj,
|
|
1166
|
+
});
|
|
1167
|
+
})(IdentityVerificationAttributes = exports.IdentityVerificationAttributes || (exports.IdentityVerificationAttributes = {}));
|
|
1168
|
+
var GetIdentityVerificationAttributesResponse;
|
|
1169
|
+
(function (GetIdentityVerificationAttributesResponse) {
|
|
1170
|
+
/**
|
|
1171
|
+
* @internal
|
|
1172
|
+
*/
|
|
1173
|
+
GetIdentityVerificationAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1174
|
+
...obj,
|
|
1175
|
+
});
|
|
1176
|
+
})(GetIdentityVerificationAttributesResponse = exports.GetIdentityVerificationAttributesResponse || (exports.GetIdentityVerificationAttributesResponse = {}));
|
|
1177
|
+
var GetSendQuotaResponse;
|
|
1178
|
+
(function (GetSendQuotaResponse) {
|
|
1179
|
+
/**
|
|
1180
|
+
* @internal
|
|
1181
|
+
*/
|
|
1182
|
+
GetSendQuotaResponse.filterSensitiveLog = (obj) => ({
|
|
1183
|
+
...obj,
|
|
1184
|
+
});
|
|
1185
|
+
})(GetSendQuotaResponse = exports.GetSendQuotaResponse || (exports.GetSendQuotaResponse = {}));
|
|
1186
|
+
var SendDataPoint;
|
|
1187
|
+
(function (SendDataPoint) {
|
|
1188
|
+
/**
|
|
1189
|
+
* @internal
|
|
1190
|
+
*/
|
|
1191
|
+
SendDataPoint.filterSensitiveLog = (obj) => ({
|
|
1192
|
+
...obj,
|
|
1193
|
+
});
|
|
1194
|
+
})(SendDataPoint = exports.SendDataPoint || (exports.SendDataPoint = {}));
|
|
1195
|
+
var GetSendStatisticsResponse;
|
|
1196
|
+
(function (GetSendStatisticsResponse) {
|
|
1197
|
+
/**
|
|
1198
|
+
* @internal
|
|
1199
|
+
*/
|
|
1200
|
+
GetSendStatisticsResponse.filterSensitiveLog = (obj) => ({
|
|
1201
|
+
...obj,
|
|
1202
|
+
});
|
|
1203
|
+
})(GetSendStatisticsResponse = exports.GetSendStatisticsResponse || (exports.GetSendStatisticsResponse = {}));
|
|
1204
|
+
var GetTemplateRequest;
|
|
1205
|
+
(function (GetTemplateRequest) {
|
|
1206
|
+
/**
|
|
1207
|
+
* @internal
|
|
1208
|
+
*/
|
|
1209
|
+
GetTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
1210
|
+
...obj,
|
|
1211
|
+
});
|
|
1212
|
+
})(GetTemplateRequest = exports.GetTemplateRequest || (exports.GetTemplateRequest = {}));
|
|
1213
|
+
var GetTemplateResponse;
|
|
1214
|
+
(function (GetTemplateResponse) {
|
|
1215
|
+
/**
|
|
1216
|
+
* @internal
|
|
1217
|
+
*/
|
|
1218
|
+
GetTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
1219
|
+
...obj,
|
|
1220
|
+
});
|
|
1221
|
+
})(GetTemplateResponse = exports.GetTemplateResponse || (exports.GetTemplateResponse = {}));
|
|
1222
|
+
var TemplateDoesNotExistException;
|
|
1223
|
+
(function (TemplateDoesNotExistException) {
|
|
1224
|
+
/**
|
|
1225
|
+
* @internal
|
|
1226
|
+
*/
|
|
1227
|
+
TemplateDoesNotExistException.filterSensitiveLog = (obj) => ({
|
|
1228
|
+
...obj,
|
|
1229
|
+
});
|
|
1230
|
+
})(TemplateDoesNotExistException = exports.TemplateDoesNotExistException || (exports.TemplateDoesNotExistException = {}));
|
|
1231
|
+
var InvalidDeliveryOptionsException;
|
|
1232
|
+
(function (InvalidDeliveryOptionsException) {
|
|
1233
|
+
/**
|
|
1234
|
+
* @internal
|
|
1235
|
+
*/
|
|
1236
|
+
InvalidDeliveryOptionsException.filterSensitiveLog = (obj) => ({
|
|
1237
|
+
...obj,
|
|
1238
|
+
});
|
|
1239
|
+
})(InvalidDeliveryOptionsException = exports.InvalidDeliveryOptionsException || (exports.InvalidDeliveryOptionsException = {}));
|
|
1240
|
+
var InvalidPolicyException;
|
|
1241
|
+
(function (InvalidPolicyException) {
|
|
1242
|
+
/**
|
|
1243
|
+
* @internal
|
|
1244
|
+
*/
|
|
1245
|
+
InvalidPolicyException.filterSensitiveLog = (obj) => ({
|
|
1246
|
+
...obj,
|
|
1247
|
+
});
|
|
1248
|
+
})(InvalidPolicyException = exports.InvalidPolicyException || (exports.InvalidPolicyException = {}));
|
|
1249
|
+
var InvalidRenderingParameterException;
|
|
1250
|
+
(function (InvalidRenderingParameterException) {
|
|
1251
|
+
/**
|
|
1252
|
+
* @internal
|
|
1253
|
+
*/
|
|
1254
|
+
InvalidRenderingParameterException.filterSensitiveLog = (obj) => ({
|
|
1255
|
+
...obj,
|
|
1256
|
+
});
|
|
1257
|
+
})(InvalidRenderingParameterException = exports.InvalidRenderingParameterException || (exports.InvalidRenderingParameterException = {}));
|
|
1258
|
+
var ListConfigurationSetsRequest;
|
|
1259
|
+
(function (ListConfigurationSetsRequest) {
|
|
1260
|
+
/**
|
|
1261
|
+
* @internal
|
|
1262
|
+
*/
|
|
1263
|
+
ListConfigurationSetsRequest.filterSensitiveLog = (obj) => ({
|
|
1264
|
+
...obj,
|
|
1265
|
+
});
|
|
1266
|
+
})(ListConfigurationSetsRequest = exports.ListConfigurationSetsRequest || (exports.ListConfigurationSetsRequest = {}));
|
|
1267
|
+
var ListConfigurationSetsResponse;
|
|
1268
|
+
(function (ListConfigurationSetsResponse) {
|
|
1269
|
+
/**
|
|
1270
|
+
* @internal
|
|
1271
|
+
*/
|
|
1272
|
+
ListConfigurationSetsResponse.filterSensitiveLog = (obj) => ({
|
|
1273
|
+
...obj,
|
|
1274
|
+
});
|
|
1275
|
+
})(ListConfigurationSetsResponse = exports.ListConfigurationSetsResponse || (exports.ListConfigurationSetsResponse = {}));
|
|
1276
|
+
var ListCustomVerificationEmailTemplatesRequest;
|
|
1277
|
+
(function (ListCustomVerificationEmailTemplatesRequest) {
|
|
1278
|
+
/**
|
|
1279
|
+
* @internal
|
|
1280
|
+
*/
|
|
1281
|
+
ListCustomVerificationEmailTemplatesRequest.filterSensitiveLog = (obj) => ({
|
|
1282
|
+
...obj,
|
|
1283
|
+
});
|
|
1284
|
+
})(ListCustomVerificationEmailTemplatesRequest = exports.ListCustomVerificationEmailTemplatesRequest || (exports.ListCustomVerificationEmailTemplatesRequest = {}));
|
|
1285
|
+
var ListCustomVerificationEmailTemplatesResponse;
|
|
1286
|
+
(function (ListCustomVerificationEmailTemplatesResponse) {
|
|
1287
|
+
/**
|
|
1288
|
+
* @internal
|
|
1289
|
+
*/
|
|
1290
|
+
ListCustomVerificationEmailTemplatesResponse.filterSensitiveLog = (obj) => ({
|
|
1291
|
+
...obj,
|
|
1292
|
+
});
|
|
1293
|
+
})(ListCustomVerificationEmailTemplatesResponse = exports.ListCustomVerificationEmailTemplatesResponse || (exports.ListCustomVerificationEmailTemplatesResponse = {}));
|
|
1294
|
+
var ListIdentitiesRequest;
|
|
1295
|
+
(function (ListIdentitiesRequest) {
|
|
1296
|
+
/**
|
|
1297
|
+
* @internal
|
|
1298
|
+
*/
|
|
1299
|
+
ListIdentitiesRequest.filterSensitiveLog = (obj) => ({
|
|
1300
|
+
...obj,
|
|
1301
|
+
});
|
|
1302
|
+
})(ListIdentitiesRequest = exports.ListIdentitiesRequest || (exports.ListIdentitiesRequest = {}));
|
|
1303
|
+
var ListIdentitiesResponse;
|
|
1304
|
+
(function (ListIdentitiesResponse) {
|
|
1305
|
+
/**
|
|
1306
|
+
* @internal
|
|
1307
|
+
*/
|
|
1308
|
+
ListIdentitiesResponse.filterSensitiveLog = (obj) => ({
|
|
1309
|
+
...obj,
|
|
1310
|
+
});
|
|
1311
|
+
})(ListIdentitiesResponse = exports.ListIdentitiesResponse || (exports.ListIdentitiesResponse = {}));
|
|
1312
|
+
var ListIdentityPoliciesRequest;
|
|
1313
|
+
(function (ListIdentityPoliciesRequest) {
|
|
1314
|
+
/**
|
|
1315
|
+
* @internal
|
|
1316
|
+
*/
|
|
1317
|
+
ListIdentityPoliciesRequest.filterSensitiveLog = (obj) => ({
|
|
1318
|
+
...obj,
|
|
1319
|
+
});
|
|
1320
|
+
})(ListIdentityPoliciesRequest = exports.ListIdentityPoliciesRequest || (exports.ListIdentityPoliciesRequest = {}));
|
|
1321
|
+
var ListIdentityPoliciesResponse;
|
|
1322
|
+
(function (ListIdentityPoliciesResponse) {
|
|
1323
|
+
/**
|
|
1324
|
+
* @internal
|
|
1325
|
+
*/
|
|
1326
|
+
ListIdentityPoliciesResponse.filterSensitiveLog = (obj) => ({
|
|
1327
|
+
...obj,
|
|
1328
|
+
});
|
|
1329
|
+
})(ListIdentityPoliciesResponse = exports.ListIdentityPoliciesResponse || (exports.ListIdentityPoliciesResponse = {}));
|
|
1330
|
+
var ListReceiptFiltersRequest;
|
|
1331
|
+
(function (ListReceiptFiltersRequest) {
|
|
1332
|
+
/**
|
|
1333
|
+
* @internal
|
|
1334
|
+
*/
|
|
1335
|
+
ListReceiptFiltersRequest.filterSensitiveLog = (obj) => ({
|
|
1336
|
+
...obj,
|
|
1337
|
+
});
|
|
1338
|
+
})(ListReceiptFiltersRequest = exports.ListReceiptFiltersRequest || (exports.ListReceiptFiltersRequest = {}));
|
|
1339
|
+
var ListReceiptFiltersResponse;
|
|
1340
|
+
(function (ListReceiptFiltersResponse) {
|
|
1341
|
+
/**
|
|
1342
|
+
* @internal
|
|
1343
|
+
*/
|
|
1344
|
+
ListReceiptFiltersResponse.filterSensitiveLog = (obj) => ({
|
|
1345
|
+
...obj,
|
|
1346
|
+
});
|
|
1347
|
+
})(ListReceiptFiltersResponse = exports.ListReceiptFiltersResponse || (exports.ListReceiptFiltersResponse = {}));
|
|
1348
|
+
var ListReceiptRuleSetsRequest;
|
|
1349
|
+
(function (ListReceiptRuleSetsRequest) {
|
|
1350
|
+
/**
|
|
1351
|
+
* @internal
|
|
1352
|
+
*/
|
|
1353
|
+
ListReceiptRuleSetsRequest.filterSensitiveLog = (obj) => ({
|
|
1354
|
+
...obj,
|
|
1355
|
+
});
|
|
1356
|
+
})(ListReceiptRuleSetsRequest = exports.ListReceiptRuleSetsRequest || (exports.ListReceiptRuleSetsRequest = {}));
|
|
1357
|
+
var ListReceiptRuleSetsResponse;
|
|
1358
|
+
(function (ListReceiptRuleSetsResponse) {
|
|
1359
|
+
/**
|
|
1360
|
+
* @internal
|
|
1361
|
+
*/
|
|
1362
|
+
ListReceiptRuleSetsResponse.filterSensitiveLog = (obj) => ({
|
|
1363
|
+
...obj,
|
|
1364
|
+
});
|
|
1365
|
+
})(ListReceiptRuleSetsResponse = exports.ListReceiptRuleSetsResponse || (exports.ListReceiptRuleSetsResponse = {}));
|
|
1366
|
+
var ListTemplatesRequest;
|
|
1367
|
+
(function (ListTemplatesRequest) {
|
|
1368
|
+
/**
|
|
1369
|
+
* @internal
|
|
1370
|
+
*/
|
|
1371
|
+
ListTemplatesRequest.filterSensitiveLog = (obj) => ({
|
|
1372
|
+
...obj,
|
|
1373
|
+
});
|
|
1374
|
+
})(ListTemplatesRequest = exports.ListTemplatesRequest || (exports.ListTemplatesRequest = {}));
|
|
1375
|
+
var TemplateMetadata;
|
|
1376
|
+
(function (TemplateMetadata) {
|
|
1377
|
+
/**
|
|
1378
|
+
* @internal
|
|
1379
|
+
*/
|
|
1380
|
+
TemplateMetadata.filterSensitiveLog = (obj) => ({
|
|
1381
|
+
...obj,
|
|
1382
|
+
});
|
|
1383
|
+
})(TemplateMetadata = exports.TemplateMetadata || (exports.TemplateMetadata = {}));
|
|
1384
|
+
var ListTemplatesResponse;
|
|
1385
|
+
(function (ListTemplatesResponse) {
|
|
1386
|
+
/**
|
|
1387
|
+
* @internal
|
|
1388
|
+
*/
|
|
1389
|
+
ListTemplatesResponse.filterSensitiveLog = (obj) => ({
|
|
1390
|
+
...obj,
|
|
1391
|
+
});
|
|
1392
|
+
})(ListTemplatesResponse = exports.ListTemplatesResponse || (exports.ListTemplatesResponse = {}));
|
|
1393
|
+
var ListVerifiedEmailAddressesResponse;
|
|
1394
|
+
(function (ListVerifiedEmailAddressesResponse) {
|
|
1395
|
+
/**
|
|
1396
|
+
* @internal
|
|
1397
|
+
*/
|
|
1398
|
+
ListVerifiedEmailAddressesResponse.filterSensitiveLog = (obj) => ({
|
|
1399
|
+
...obj,
|
|
1400
|
+
});
|
|
1401
|
+
})(ListVerifiedEmailAddressesResponse = exports.ListVerifiedEmailAddressesResponse || (exports.ListVerifiedEmailAddressesResponse = {}));
|
|
1402
|
+
var MailFromDomainNotVerifiedException;
|
|
1403
|
+
(function (MailFromDomainNotVerifiedException) {
|
|
1404
|
+
/**
|
|
1405
|
+
* @internal
|
|
1406
|
+
*/
|
|
1407
|
+
MailFromDomainNotVerifiedException.filterSensitiveLog = (obj) => ({
|
|
1408
|
+
...obj,
|
|
1409
|
+
});
|
|
1410
|
+
})(MailFromDomainNotVerifiedException = exports.MailFromDomainNotVerifiedException || (exports.MailFromDomainNotVerifiedException = {}));
|
|
1411
|
+
var Message;
|
|
1412
|
+
(function (Message) {
|
|
1413
|
+
/**
|
|
1414
|
+
* @internal
|
|
1415
|
+
*/
|
|
1416
|
+
Message.filterSensitiveLog = (obj) => ({
|
|
1417
|
+
...obj,
|
|
1418
|
+
});
|
|
1419
|
+
})(Message = exports.Message || (exports.Message = {}));
|
|
1420
|
+
var MessageDsn;
|
|
1421
|
+
(function (MessageDsn) {
|
|
1422
|
+
/**
|
|
1423
|
+
* @internal
|
|
1424
|
+
*/
|
|
1425
|
+
MessageDsn.filterSensitiveLog = (obj) => ({
|
|
1426
|
+
...obj,
|
|
1427
|
+
});
|
|
1428
|
+
})(MessageDsn = exports.MessageDsn || (exports.MessageDsn = {}));
|
|
1429
|
+
var MessageRejected;
|
|
1430
|
+
(function (MessageRejected) {
|
|
1431
|
+
/**
|
|
1432
|
+
* @internal
|
|
1433
|
+
*/
|
|
1434
|
+
MessageRejected.filterSensitiveLog = (obj) => ({
|
|
1435
|
+
...obj,
|
|
1436
|
+
});
|
|
1437
|
+
})(MessageRejected = exports.MessageRejected || (exports.MessageRejected = {}));
|
|
1438
|
+
var MissingRenderingAttributeException;
|
|
1439
|
+
(function (MissingRenderingAttributeException) {
|
|
1440
|
+
/**
|
|
1441
|
+
* @internal
|
|
1442
|
+
*/
|
|
1443
|
+
MissingRenderingAttributeException.filterSensitiveLog = (obj) => ({
|
|
1444
|
+
...obj,
|
|
1445
|
+
});
|
|
1446
|
+
})(MissingRenderingAttributeException = exports.MissingRenderingAttributeException || (exports.MissingRenderingAttributeException = {}));
|
|
1447
|
+
var ProductionAccessNotGrantedException;
|
|
1448
|
+
(function (ProductionAccessNotGrantedException) {
|
|
1449
|
+
/**
|
|
1450
|
+
* @internal
|
|
1451
|
+
*/
|
|
1452
|
+
ProductionAccessNotGrantedException.filterSensitiveLog = (obj) => ({
|
|
1453
|
+
...obj,
|
|
1454
|
+
});
|
|
1455
|
+
})(ProductionAccessNotGrantedException = exports.ProductionAccessNotGrantedException || (exports.ProductionAccessNotGrantedException = {}));
|
|
1456
|
+
var PutConfigurationSetDeliveryOptionsRequest;
|
|
1457
|
+
(function (PutConfigurationSetDeliveryOptionsRequest) {
|
|
1458
|
+
/**
|
|
1459
|
+
* @internal
|
|
1460
|
+
*/
|
|
1461
|
+
PutConfigurationSetDeliveryOptionsRequest.filterSensitiveLog = (obj) => ({
|
|
1462
|
+
...obj,
|
|
1463
|
+
});
|
|
1464
|
+
})(PutConfigurationSetDeliveryOptionsRequest = exports.PutConfigurationSetDeliveryOptionsRequest || (exports.PutConfigurationSetDeliveryOptionsRequest = {}));
|
|
1465
|
+
var PutConfigurationSetDeliveryOptionsResponse;
|
|
1466
|
+
(function (PutConfigurationSetDeliveryOptionsResponse) {
|
|
1467
|
+
/**
|
|
1468
|
+
* @internal
|
|
1469
|
+
*/
|
|
1470
|
+
PutConfigurationSetDeliveryOptionsResponse.filterSensitiveLog = (obj) => ({
|
|
1471
|
+
...obj,
|
|
1472
|
+
});
|
|
1473
|
+
})(PutConfigurationSetDeliveryOptionsResponse = exports.PutConfigurationSetDeliveryOptionsResponse || (exports.PutConfigurationSetDeliveryOptionsResponse = {}));
|
|
1474
|
+
var PutIdentityPolicyRequest;
|
|
1475
|
+
(function (PutIdentityPolicyRequest) {
|
|
1476
|
+
/**
|
|
1477
|
+
* @internal
|
|
1478
|
+
*/
|
|
1479
|
+
PutIdentityPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
1480
|
+
...obj,
|
|
1481
|
+
});
|
|
1482
|
+
})(PutIdentityPolicyRequest = exports.PutIdentityPolicyRequest || (exports.PutIdentityPolicyRequest = {}));
|
|
1483
|
+
var PutIdentityPolicyResponse;
|
|
1484
|
+
(function (PutIdentityPolicyResponse) {
|
|
1485
|
+
/**
|
|
1486
|
+
* @internal
|
|
1487
|
+
*/
|
|
1488
|
+
PutIdentityPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
1489
|
+
...obj,
|
|
1490
|
+
});
|
|
1491
|
+
})(PutIdentityPolicyResponse = exports.PutIdentityPolicyResponse || (exports.PutIdentityPolicyResponse = {}));
|
|
1492
|
+
var RawMessage;
|
|
1493
|
+
(function (RawMessage) {
|
|
1494
|
+
/**
|
|
1495
|
+
* @internal
|
|
1496
|
+
*/
|
|
1497
|
+
RawMessage.filterSensitiveLog = (obj) => ({
|
|
1498
|
+
...obj,
|
|
1499
|
+
});
|
|
1500
|
+
})(RawMessage = exports.RawMessage || (exports.RawMessage = {}));
|
|
1501
|
+
var ReorderReceiptRuleSetRequest;
|
|
1502
|
+
(function (ReorderReceiptRuleSetRequest) {
|
|
1503
|
+
/**
|
|
1504
|
+
* @internal
|
|
1505
|
+
*/
|
|
1506
|
+
ReorderReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
1507
|
+
...obj,
|
|
1508
|
+
});
|
|
1509
|
+
})(ReorderReceiptRuleSetRequest = exports.ReorderReceiptRuleSetRequest || (exports.ReorderReceiptRuleSetRequest = {}));
|
|
1510
|
+
var ReorderReceiptRuleSetResponse;
|
|
1511
|
+
(function (ReorderReceiptRuleSetResponse) {
|
|
1512
|
+
/**
|
|
1513
|
+
* @internal
|
|
1514
|
+
*/
|
|
1515
|
+
ReorderReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
1516
|
+
...obj,
|
|
1517
|
+
});
|
|
1518
|
+
})(ReorderReceiptRuleSetResponse = exports.ReorderReceiptRuleSetResponse || (exports.ReorderReceiptRuleSetResponse = {}));
|
|
1519
|
+
var SendBounceRequest;
|
|
1520
|
+
(function (SendBounceRequest) {
|
|
1521
|
+
/**
|
|
1522
|
+
* @internal
|
|
1523
|
+
*/
|
|
1524
|
+
SendBounceRequest.filterSensitiveLog = (obj) => ({
|
|
1525
|
+
...obj,
|
|
1526
|
+
});
|
|
1527
|
+
})(SendBounceRequest = exports.SendBounceRequest || (exports.SendBounceRequest = {}));
|
|
1528
|
+
var SendBounceResponse;
|
|
1529
|
+
(function (SendBounceResponse) {
|
|
1530
|
+
/**
|
|
1531
|
+
* @internal
|
|
1532
|
+
*/
|
|
1533
|
+
SendBounceResponse.filterSensitiveLog = (obj) => ({
|
|
1534
|
+
...obj,
|
|
1535
|
+
});
|
|
1536
|
+
})(SendBounceResponse = exports.SendBounceResponse || (exports.SendBounceResponse = {}));
|
|
1537
|
+
var SendBulkTemplatedEmailRequest;
|
|
1538
|
+
(function (SendBulkTemplatedEmailRequest) {
|
|
1539
|
+
/**
|
|
1540
|
+
* @internal
|
|
1541
|
+
*/
|
|
1542
|
+
SendBulkTemplatedEmailRequest.filterSensitiveLog = (obj) => ({
|
|
1543
|
+
...obj,
|
|
1544
|
+
});
|
|
1545
|
+
})(SendBulkTemplatedEmailRequest = exports.SendBulkTemplatedEmailRequest || (exports.SendBulkTemplatedEmailRequest = {}));
|
|
1546
|
+
var SendBulkTemplatedEmailResponse;
|
|
1547
|
+
(function (SendBulkTemplatedEmailResponse) {
|
|
1548
|
+
/**
|
|
1549
|
+
* @internal
|
|
1550
|
+
*/
|
|
1551
|
+
SendBulkTemplatedEmailResponse.filterSensitiveLog = (obj) => ({
|
|
1552
|
+
...obj,
|
|
1553
|
+
});
|
|
1554
|
+
})(SendBulkTemplatedEmailResponse = exports.SendBulkTemplatedEmailResponse || (exports.SendBulkTemplatedEmailResponse = {}));
|
|
1555
|
+
var SendCustomVerificationEmailRequest;
|
|
1556
|
+
(function (SendCustomVerificationEmailRequest) {
|
|
1557
|
+
/**
|
|
1558
|
+
* @internal
|
|
1559
|
+
*/
|
|
1560
|
+
SendCustomVerificationEmailRequest.filterSensitiveLog = (obj) => ({
|
|
1561
|
+
...obj,
|
|
1562
|
+
});
|
|
1563
|
+
})(SendCustomVerificationEmailRequest = exports.SendCustomVerificationEmailRequest || (exports.SendCustomVerificationEmailRequest = {}));
|
|
1564
|
+
var SendCustomVerificationEmailResponse;
|
|
1565
|
+
(function (SendCustomVerificationEmailResponse) {
|
|
1566
|
+
/**
|
|
1567
|
+
* @internal
|
|
1568
|
+
*/
|
|
1569
|
+
SendCustomVerificationEmailResponse.filterSensitiveLog = (obj) => ({
|
|
1570
|
+
...obj,
|
|
1571
|
+
});
|
|
1572
|
+
})(SendCustomVerificationEmailResponse = exports.SendCustomVerificationEmailResponse || (exports.SendCustomVerificationEmailResponse = {}));
|
|
1573
|
+
var SendEmailRequest;
|
|
1574
|
+
(function (SendEmailRequest) {
|
|
1575
|
+
/**
|
|
1576
|
+
* @internal
|
|
1577
|
+
*/
|
|
1578
|
+
SendEmailRequest.filterSensitiveLog = (obj) => ({
|
|
1579
|
+
...obj,
|
|
1580
|
+
});
|
|
1581
|
+
})(SendEmailRequest = exports.SendEmailRequest || (exports.SendEmailRequest = {}));
|
|
1582
|
+
var SendEmailResponse;
|
|
1583
|
+
(function (SendEmailResponse) {
|
|
1584
|
+
/**
|
|
1585
|
+
* @internal
|
|
1586
|
+
*/
|
|
1587
|
+
SendEmailResponse.filterSensitiveLog = (obj) => ({
|
|
1588
|
+
...obj,
|
|
1589
|
+
});
|
|
1590
|
+
})(SendEmailResponse = exports.SendEmailResponse || (exports.SendEmailResponse = {}));
|
|
1591
|
+
var SendRawEmailRequest;
|
|
1592
|
+
(function (SendRawEmailRequest) {
|
|
1593
|
+
/**
|
|
1594
|
+
* @internal
|
|
1595
|
+
*/
|
|
1596
|
+
SendRawEmailRequest.filterSensitiveLog = (obj) => ({
|
|
1597
|
+
...obj,
|
|
1598
|
+
});
|
|
1599
|
+
})(SendRawEmailRequest = exports.SendRawEmailRequest || (exports.SendRawEmailRequest = {}));
|
|
1600
|
+
var SendRawEmailResponse;
|
|
1601
|
+
(function (SendRawEmailResponse) {
|
|
1602
|
+
/**
|
|
1603
|
+
* @internal
|
|
1604
|
+
*/
|
|
1605
|
+
SendRawEmailResponse.filterSensitiveLog = (obj) => ({
|
|
1606
|
+
...obj,
|
|
1607
|
+
});
|
|
1608
|
+
})(SendRawEmailResponse = exports.SendRawEmailResponse || (exports.SendRawEmailResponse = {}));
|
|
1609
|
+
var SendTemplatedEmailRequest;
|
|
1610
|
+
(function (SendTemplatedEmailRequest) {
|
|
1611
|
+
/**
|
|
1612
|
+
* @internal
|
|
1613
|
+
*/
|
|
1614
|
+
SendTemplatedEmailRequest.filterSensitiveLog = (obj) => ({
|
|
1615
|
+
...obj,
|
|
1616
|
+
});
|
|
1617
|
+
})(SendTemplatedEmailRequest = exports.SendTemplatedEmailRequest || (exports.SendTemplatedEmailRequest = {}));
|
|
1618
|
+
var SendTemplatedEmailResponse;
|
|
1619
|
+
(function (SendTemplatedEmailResponse) {
|
|
1620
|
+
/**
|
|
1621
|
+
* @internal
|
|
1622
|
+
*/
|
|
1623
|
+
SendTemplatedEmailResponse.filterSensitiveLog = (obj) => ({
|
|
1624
|
+
...obj,
|
|
1625
|
+
});
|
|
1626
|
+
})(SendTemplatedEmailResponse = exports.SendTemplatedEmailResponse || (exports.SendTemplatedEmailResponse = {}));
|
|
1627
|
+
var SetActiveReceiptRuleSetRequest;
|
|
1628
|
+
(function (SetActiveReceiptRuleSetRequest) {
|
|
1629
|
+
/**
|
|
1630
|
+
* @internal
|
|
1631
|
+
*/
|
|
1632
|
+
SetActiveReceiptRuleSetRequest.filterSensitiveLog = (obj) => ({
|
|
1633
|
+
...obj,
|
|
1634
|
+
});
|
|
1635
|
+
})(SetActiveReceiptRuleSetRequest = exports.SetActiveReceiptRuleSetRequest || (exports.SetActiveReceiptRuleSetRequest = {}));
|
|
1636
|
+
var SetActiveReceiptRuleSetResponse;
|
|
1637
|
+
(function (SetActiveReceiptRuleSetResponse) {
|
|
1638
|
+
/**
|
|
1639
|
+
* @internal
|
|
1640
|
+
*/
|
|
1641
|
+
SetActiveReceiptRuleSetResponse.filterSensitiveLog = (obj) => ({
|
|
1642
|
+
...obj,
|
|
1643
|
+
});
|
|
1644
|
+
})(SetActiveReceiptRuleSetResponse = exports.SetActiveReceiptRuleSetResponse || (exports.SetActiveReceiptRuleSetResponse = {}));
|
|
1645
|
+
var SetIdentityDkimEnabledRequest;
|
|
1646
|
+
(function (SetIdentityDkimEnabledRequest) {
|
|
1647
|
+
/**
|
|
1648
|
+
* @internal
|
|
1649
|
+
*/
|
|
1650
|
+
SetIdentityDkimEnabledRequest.filterSensitiveLog = (obj) => ({
|
|
1651
|
+
...obj,
|
|
1652
|
+
});
|
|
1653
|
+
})(SetIdentityDkimEnabledRequest = exports.SetIdentityDkimEnabledRequest || (exports.SetIdentityDkimEnabledRequest = {}));
|
|
1654
|
+
var SetIdentityDkimEnabledResponse;
|
|
1655
|
+
(function (SetIdentityDkimEnabledResponse) {
|
|
1656
|
+
/**
|
|
1657
|
+
* @internal
|
|
1658
|
+
*/
|
|
1659
|
+
SetIdentityDkimEnabledResponse.filterSensitiveLog = (obj) => ({
|
|
1660
|
+
...obj,
|
|
1661
|
+
});
|
|
1662
|
+
})(SetIdentityDkimEnabledResponse = exports.SetIdentityDkimEnabledResponse || (exports.SetIdentityDkimEnabledResponse = {}));
|
|
1663
|
+
var SetIdentityFeedbackForwardingEnabledRequest;
|
|
1664
|
+
(function (SetIdentityFeedbackForwardingEnabledRequest) {
|
|
1665
|
+
/**
|
|
1666
|
+
* @internal
|
|
1667
|
+
*/
|
|
1668
|
+
SetIdentityFeedbackForwardingEnabledRequest.filterSensitiveLog = (obj) => ({
|
|
1669
|
+
...obj,
|
|
1670
|
+
});
|
|
1671
|
+
})(SetIdentityFeedbackForwardingEnabledRequest = exports.SetIdentityFeedbackForwardingEnabledRequest || (exports.SetIdentityFeedbackForwardingEnabledRequest = {}));
|
|
1672
|
+
var SetIdentityFeedbackForwardingEnabledResponse;
|
|
1673
|
+
(function (SetIdentityFeedbackForwardingEnabledResponse) {
|
|
1674
|
+
/**
|
|
1675
|
+
* @internal
|
|
1676
|
+
*/
|
|
1677
|
+
SetIdentityFeedbackForwardingEnabledResponse.filterSensitiveLog = (obj) => ({
|
|
1678
|
+
...obj,
|
|
1679
|
+
});
|
|
1680
|
+
})(SetIdentityFeedbackForwardingEnabledResponse = exports.SetIdentityFeedbackForwardingEnabledResponse || (exports.SetIdentityFeedbackForwardingEnabledResponse = {}));
|
|
1681
|
+
var SetIdentityHeadersInNotificationsEnabledRequest;
|
|
1682
|
+
(function (SetIdentityHeadersInNotificationsEnabledRequest) {
|
|
1683
|
+
/**
|
|
1684
|
+
* @internal
|
|
1685
|
+
*/
|
|
1686
|
+
SetIdentityHeadersInNotificationsEnabledRequest.filterSensitiveLog = (obj) => ({
|
|
1687
|
+
...obj,
|
|
1688
|
+
});
|
|
1689
|
+
})(SetIdentityHeadersInNotificationsEnabledRequest = exports.SetIdentityHeadersInNotificationsEnabledRequest || (exports.SetIdentityHeadersInNotificationsEnabledRequest = {}));
|
|
1690
|
+
var SetIdentityHeadersInNotificationsEnabledResponse;
|
|
1691
|
+
(function (SetIdentityHeadersInNotificationsEnabledResponse) {
|
|
1692
|
+
/**
|
|
1693
|
+
* @internal
|
|
1694
|
+
*/
|
|
1695
|
+
SetIdentityHeadersInNotificationsEnabledResponse.filterSensitiveLog = (obj) => ({
|
|
1696
|
+
...obj,
|
|
1697
|
+
});
|
|
1698
|
+
})(SetIdentityHeadersInNotificationsEnabledResponse = exports.SetIdentityHeadersInNotificationsEnabledResponse || (exports.SetIdentityHeadersInNotificationsEnabledResponse = {}));
|
|
1699
|
+
var SetIdentityMailFromDomainRequest;
|
|
1700
|
+
(function (SetIdentityMailFromDomainRequest) {
|
|
1701
|
+
/**
|
|
1702
|
+
* @internal
|
|
1703
|
+
*/
|
|
1704
|
+
SetIdentityMailFromDomainRequest.filterSensitiveLog = (obj) => ({
|
|
1705
|
+
...obj,
|
|
1706
|
+
});
|
|
1707
|
+
})(SetIdentityMailFromDomainRequest = exports.SetIdentityMailFromDomainRequest || (exports.SetIdentityMailFromDomainRequest = {}));
|
|
1708
|
+
var SetIdentityMailFromDomainResponse;
|
|
1709
|
+
(function (SetIdentityMailFromDomainResponse) {
|
|
1710
|
+
/**
|
|
1711
|
+
* @internal
|
|
1712
|
+
*/
|
|
1713
|
+
SetIdentityMailFromDomainResponse.filterSensitiveLog = (obj) => ({
|
|
1714
|
+
...obj,
|
|
1715
|
+
});
|
|
1716
|
+
})(SetIdentityMailFromDomainResponse = exports.SetIdentityMailFromDomainResponse || (exports.SetIdentityMailFromDomainResponse = {}));
|
|
1717
|
+
var SetIdentityNotificationTopicRequest;
|
|
1718
|
+
(function (SetIdentityNotificationTopicRequest) {
|
|
1719
|
+
/**
|
|
1720
|
+
* @internal
|
|
1721
|
+
*/
|
|
1722
|
+
SetIdentityNotificationTopicRequest.filterSensitiveLog = (obj) => ({
|
|
1723
|
+
...obj,
|
|
1724
|
+
});
|
|
1725
|
+
})(SetIdentityNotificationTopicRequest = exports.SetIdentityNotificationTopicRequest || (exports.SetIdentityNotificationTopicRequest = {}));
|
|
1726
|
+
var SetIdentityNotificationTopicResponse;
|
|
1727
|
+
(function (SetIdentityNotificationTopicResponse) {
|
|
1728
|
+
/**
|
|
1729
|
+
* @internal
|
|
1730
|
+
*/
|
|
1731
|
+
SetIdentityNotificationTopicResponse.filterSensitiveLog = (obj) => ({
|
|
1732
|
+
...obj,
|
|
1733
|
+
});
|
|
1734
|
+
})(SetIdentityNotificationTopicResponse = exports.SetIdentityNotificationTopicResponse || (exports.SetIdentityNotificationTopicResponse = {}));
|
|
1735
|
+
var SetReceiptRulePositionRequest;
|
|
1736
|
+
(function (SetReceiptRulePositionRequest) {
|
|
1737
|
+
/**
|
|
1738
|
+
* @internal
|
|
1739
|
+
*/
|
|
1740
|
+
SetReceiptRulePositionRequest.filterSensitiveLog = (obj) => ({
|
|
1741
|
+
...obj,
|
|
1742
|
+
});
|
|
1743
|
+
})(SetReceiptRulePositionRequest = exports.SetReceiptRulePositionRequest || (exports.SetReceiptRulePositionRequest = {}));
|
|
1744
|
+
var SetReceiptRulePositionResponse;
|
|
1745
|
+
(function (SetReceiptRulePositionResponse) {
|
|
1746
|
+
/**
|
|
1747
|
+
* @internal
|
|
1748
|
+
*/
|
|
1749
|
+
SetReceiptRulePositionResponse.filterSensitiveLog = (obj) => ({
|
|
1750
|
+
...obj,
|
|
1751
|
+
});
|
|
1752
|
+
})(SetReceiptRulePositionResponse = exports.SetReceiptRulePositionResponse || (exports.SetReceiptRulePositionResponse = {}));
|
|
1753
|
+
var TestRenderTemplateRequest;
|
|
1754
|
+
(function (TestRenderTemplateRequest) {
|
|
1755
|
+
/**
|
|
1756
|
+
* @internal
|
|
1757
|
+
*/
|
|
1758
|
+
TestRenderTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
1759
|
+
...obj,
|
|
1760
|
+
});
|
|
1761
|
+
})(TestRenderTemplateRequest = exports.TestRenderTemplateRequest || (exports.TestRenderTemplateRequest = {}));
|
|
1762
|
+
var TestRenderTemplateResponse;
|
|
1763
|
+
(function (TestRenderTemplateResponse) {
|
|
1764
|
+
/**
|
|
1765
|
+
* @internal
|
|
1766
|
+
*/
|
|
1767
|
+
TestRenderTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
1768
|
+
...obj,
|
|
1769
|
+
});
|
|
1770
|
+
})(TestRenderTemplateResponse = exports.TestRenderTemplateResponse || (exports.TestRenderTemplateResponse = {}));
|
|
1771
|
+
var UpdateAccountSendingEnabledRequest;
|
|
1772
|
+
(function (UpdateAccountSendingEnabledRequest) {
|
|
1773
|
+
/**
|
|
1774
|
+
* @internal
|
|
1775
|
+
*/
|
|
1776
|
+
UpdateAccountSendingEnabledRequest.filterSensitiveLog = (obj) => ({
|
|
1777
|
+
...obj,
|
|
1778
|
+
});
|
|
1779
|
+
})(UpdateAccountSendingEnabledRequest = exports.UpdateAccountSendingEnabledRequest || (exports.UpdateAccountSendingEnabledRequest = {}));
|
|
1780
|
+
var UpdateConfigurationSetEventDestinationRequest;
|
|
1781
|
+
(function (UpdateConfigurationSetEventDestinationRequest) {
|
|
1782
|
+
/**
|
|
1783
|
+
* @internal
|
|
1784
|
+
*/
|
|
1785
|
+
UpdateConfigurationSetEventDestinationRequest.filterSensitiveLog = (obj) => ({
|
|
1786
|
+
...obj,
|
|
1787
|
+
});
|
|
1788
|
+
})(UpdateConfigurationSetEventDestinationRequest = exports.UpdateConfigurationSetEventDestinationRequest || (exports.UpdateConfigurationSetEventDestinationRequest = {}));
|
|
1789
|
+
var UpdateConfigurationSetEventDestinationResponse;
|
|
1790
|
+
(function (UpdateConfigurationSetEventDestinationResponse) {
|
|
1791
|
+
/**
|
|
1792
|
+
* @internal
|
|
1793
|
+
*/
|
|
1794
|
+
UpdateConfigurationSetEventDestinationResponse.filterSensitiveLog = (obj) => ({
|
|
1795
|
+
...obj,
|
|
1796
|
+
});
|
|
1797
|
+
})(UpdateConfigurationSetEventDestinationResponse = exports.UpdateConfigurationSetEventDestinationResponse || (exports.UpdateConfigurationSetEventDestinationResponse = {}));
|
|
1798
|
+
var UpdateConfigurationSetReputationMetricsEnabledRequest;
|
|
1799
|
+
(function (UpdateConfigurationSetReputationMetricsEnabledRequest) {
|
|
1800
|
+
/**
|
|
1801
|
+
* @internal
|
|
1802
|
+
*/
|
|
1803
|
+
UpdateConfigurationSetReputationMetricsEnabledRequest.filterSensitiveLog = (obj) => ({
|
|
1804
|
+
...obj,
|
|
1805
|
+
});
|
|
1806
|
+
})(UpdateConfigurationSetReputationMetricsEnabledRequest = exports.UpdateConfigurationSetReputationMetricsEnabledRequest || (exports.UpdateConfigurationSetReputationMetricsEnabledRequest = {}));
|
|
1807
|
+
var UpdateConfigurationSetSendingEnabledRequest;
|
|
1808
|
+
(function (UpdateConfigurationSetSendingEnabledRequest) {
|
|
1809
|
+
/**
|
|
1810
|
+
* @internal
|
|
1811
|
+
*/
|
|
1812
|
+
UpdateConfigurationSetSendingEnabledRequest.filterSensitiveLog = (obj) => ({
|
|
1813
|
+
...obj,
|
|
1814
|
+
});
|
|
1815
|
+
})(UpdateConfigurationSetSendingEnabledRequest = exports.UpdateConfigurationSetSendingEnabledRequest || (exports.UpdateConfigurationSetSendingEnabledRequest = {}));
|
|
1816
|
+
var UpdateConfigurationSetTrackingOptionsRequest;
|
|
1817
|
+
(function (UpdateConfigurationSetTrackingOptionsRequest) {
|
|
1818
|
+
/**
|
|
1819
|
+
* @internal
|
|
1820
|
+
*/
|
|
1821
|
+
UpdateConfigurationSetTrackingOptionsRequest.filterSensitiveLog = (obj) => ({
|
|
1822
|
+
...obj,
|
|
1823
|
+
});
|
|
1824
|
+
})(UpdateConfigurationSetTrackingOptionsRequest = exports.UpdateConfigurationSetTrackingOptionsRequest || (exports.UpdateConfigurationSetTrackingOptionsRequest = {}));
|
|
1825
|
+
var UpdateConfigurationSetTrackingOptionsResponse;
|
|
1826
|
+
(function (UpdateConfigurationSetTrackingOptionsResponse) {
|
|
1827
|
+
/**
|
|
1828
|
+
* @internal
|
|
1829
|
+
*/
|
|
1830
|
+
UpdateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = (obj) => ({
|
|
1831
|
+
...obj,
|
|
1832
|
+
});
|
|
1833
|
+
})(UpdateConfigurationSetTrackingOptionsResponse = exports.UpdateConfigurationSetTrackingOptionsResponse || (exports.UpdateConfigurationSetTrackingOptionsResponse = {}));
|
|
1834
|
+
var UpdateCustomVerificationEmailTemplateRequest;
|
|
1835
|
+
(function (UpdateCustomVerificationEmailTemplateRequest) {
|
|
1836
|
+
/**
|
|
1837
|
+
* @internal
|
|
1838
|
+
*/
|
|
1839
|
+
UpdateCustomVerificationEmailTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
1840
|
+
...obj,
|
|
1841
|
+
});
|
|
1842
|
+
})(UpdateCustomVerificationEmailTemplateRequest = exports.UpdateCustomVerificationEmailTemplateRequest || (exports.UpdateCustomVerificationEmailTemplateRequest = {}));
|
|
1843
|
+
var UpdateReceiptRuleRequest;
|
|
1844
|
+
(function (UpdateReceiptRuleRequest) {
|
|
1845
|
+
/**
|
|
1846
|
+
* @internal
|
|
1847
|
+
*/
|
|
1848
|
+
UpdateReceiptRuleRequest.filterSensitiveLog = (obj) => ({
|
|
1849
|
+
...obj,
|
|
1850
|
+
});
|
|
1851
|
+
})(UpdateReceiptRuleRequest = exports.UpdateReceiptRuleRequest || (exports.UpdateReceiptRuleRequest = {}));
|
|
1852
|
+
var UpdateReceiptRuleResponse;
|
|
1853
|
+
(function (UpdateReceiptRuleResponse) {
|
|
1854
|
+
/**
|
|
1855
|
+
* @internal
|
|
1856
|
+
*/
|
|
1857
|
+
UpdateReceiptRuleResponse.filterSensitiveLog = (obj) => ({
|
|
1858
|
+
...obj,
|
|
1859
|
+
});
|
|
1860
|
+
})(UpdateReceiptRuleResponse = exports.UpdateReceiptRuleResponse || (exports.UpdateReceiptRuleResponse = {}));
|
|
1861
|
+
var UpdateTemplateRequest;
|
|
1862
|
+
(function (UpdateTemplateRequest) {
|
|
1863
|
+
/**
|
|
1864
|
+
* @internal
|
|
1865
|
+
*/
|
|
1866
|
+
UpdateTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
1867
|
+
...obj,
|
|
1868
|
+
});
|
|
1869
|
+
})(UpdateTemplateRequest = exports.UpdateTemplateRequest || (exports.UpdateTemplateRequest = {}));
|
|
1870
|
+
var UpdateTemplateResponse;
|
|
1871
|
+
(function (UpdateTemplateResponse) {
|
|
1872
|
+
/**
|
|
1873
|
+
* @internal
|
|
1874
|
+
*/
|
|
1875
|
+
UpdateTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
1876
|
+
...obj,
|
|
1877
|
+
});
|
|
1878
|
+
})(UpdateTemplateResponse = exports.UpdateTemplateResponse || (exports.UpdateTemplateResponse = {}));
|
|
1879
|
+
var VerifyDomainDkimRequest;
|
|
1880
|
+
(function (VerifyDomainDkimRequest) {
|
|
1881
|
+
/**
|
|
1882
|
+
* @internal
|
|
1883
|
+
*/
|
|
1884
|
+
VerifyDomainDkimRequest.filterSensitiveLog = (obj) => ({
|
|
1885
|
+
...obj,
|
|
1886
|
+
});
|
|
1887
|
+
})(VerifyDomainDkimRequest = exports.VerifyDomainDkimRequest || (exports.VerifyDomainDkimRequest = {}));
|
|
1888
|
+
var VerifyDomainDkimResponse;
|
|
1889
|
+
(function (VerifyDomainDkimResponse) {
|
|
1890
|
+
/**
|
|
1891
|
+
* @internal
|
|
1892
|
+
*/
|
|
1893
|
+
VerifyDomainDkimResponse.filterSensitiveLog = (obj) => ({
|
|
1894
|
+
...obj,
|
|
1895
|
+
});
|
|
1896
|
+
})(VerifyDomainDkimResponse = exports.VerifyDomainDkimResponse || (exports.VerifyDomainDkimResponse = {}));
|
|
1897
|
+
var VerifyDomainIdentityRequest;
|
|
1898
|
+
(function (VerifyDomainIdentityRequest) {
|
|
1899
|
+
/**
|
|
1900
|
+
* @internal
|
|
1901
|
+
*/
|
|
1902
|
+
VerifyDomainIdentityRequest.filterSensitiveLog = (obj) => ({
|
|
1903
|
+
...obj,
|
|
1904
|
+
});
|
|
1905
|
+
})(VerifyDomainIdentityRequest = exports.VerifyDomainIdentityRequest || (exports.VerifyDomainIdentityRequest = {}));
|
|
1906
|
+
var VerifyDomainIdentityResponse;
|
|
1907
|
+
(function (VerifyDomainIdentityResponse) {
|
|
1908
|
+
/**
|
|
1909
|
+
* @internal
|
|
1910
|
+
*/
|
|
1911
|
+
VerifyDomainIdentityResponse.filterSensitiveLog = (obj) => ({
|
|
1912
|
+
...obj,
|
|
1913
|
+
});
|
|
1914
|
+
})(VerifyDomainIdentityResponse = exports.VerifyDomainIdentityResponse || (exports.VerifyDomainIdentityResponse = {}));
|
|
1915
|
+
var VerifyEmailAddressRequest;
|
|
1916
|
+
(function (VerifyEmailAddressRequest) {
|
|
1917
|
+
/**
|
|
1918
|
+
* @internal
|
|
1919
|
+
*/
|
|
1920
|
+
VerifyEmailAddressRequest.filterSensitiveLog = (obj) => ({
|
|
1921
|
+
...obj,
|
|
1922
|
+
});
|
|
1923
|
+
})(VerifyEmailAddressRequest = exports.VerifyEmailAddressRequest || (exports.VerifyEmailAddressRequest = {}));
|
|
1924
|
+
var VerifyEmailIdentityRequest;
|
|
1925
|
+
(function (VerifyEmailIdentityRequest) {
|
|
1926
|
+
/**
|
|
1927
|
+
* @internal
|
|
1928
|
+
*/
|
|
1929
|
+
VerifyEmailIdentityRequest.filterSensitiveLog = (obj) => ({
|
|
1930
|
+
...obj,
|
|
1931
|
+
});
|
|
1932
|
+
})(VerifyEmailIdentityRequest = exports.VerifyEmailIdentityRequest || (exports.VerifyEmailIdentityRequest = {}));
|
|
1933
|
+
var VerifyEmailIdentityResponse;
|
|
1934
|
+
(function (VerifyEmailIdentityResponse) {
|
|
1935
|
+
/**
|
|
1936
|
+
* @internal
|
|
1937
|
+
*/
|
|
1938
|
+
VerifyEmailIdentityResponse.filterSensitiveLog = (obj) => ({
|
|
1939
|
+
...obj,
|
|
1940
|
+
});
|
|
1941
|
+
})(VerifyEmailIdentityResponse = exports.VerifyEmailIdentityResponse || (exports.VerifyEmailIdentityResponse = {}));
|