@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,910 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
export var AccountSendingPausedException;
|
|
3
|
+
(function (AccountSendingPausedException) {
|
|
4
|
+
AccountSendingPausedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
+
})(AccountSendingPausedException || (AccountSendingPausedException = {}));
|
|
6
|
+
export var AddHeaderAction;
|
|
7
|
+
(function (AddHeaderAction) {
|
|
8
|
+
AddHeaderAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
|
+
})(AddHeaderAction || (AddHeaderAction = {}));
|
|
10
|
+
export var AlreadyExistsException;
|
|
11
|
+
(function (AlreadyExistsException) {
|
|
12
|
+
AlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
|
+
})(AlreadyExistsException || (AlreadyExistsException = {}));
|
|
14
|
+
export var BehaviorOnMXFailure;
|
|
15
|
+
(function (BehaviorOnMXFailure) {
|
|
16
|
+
BehaviorOnMXFailure["RejectMessage"] = "RejectMessage";
|
|
17
|
+
BehaviorOnMXFailure["UseDefaultValue"] = "UseDefaultValue";
|
|
18
|
+
})(BehaviorOnMXFailure || (BehaviorOnMXFailure = {}));
|
|
19
|
+
export var Content;
|
|
20
|
+
(function (Content) {
|
|
21
|
+
Content.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
|
+
})(Content || (Content = {}));
|
|
23
|
+
export var Body;
|
|
24
|
+
(function (Body) {
|
|
25
|
+
Body.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
26
|
+
})(Body || (Body = {}));
|
|
27
|
+
export var BounceAction;
|
|
28
|
+
(function (BounceAction) {
|
|
29
|
+
BounceAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
30
|
+
})(BounceAction || (BounceAction = {}));
|
|
31
|
+
export var BounceType;
|
|
32
|
+
(function (BounceType) {
|
|
33
|
+
BounceType["ContentRejected"] = "ContentRejected";
|
|
34
|
+
BounceType["DoesNotExist"] = "DoesNotExist";
|
|
35
|
+
BounceType["ExceededQuota"] = "ExceededQuota";
|
|
36
|
+
BounceType["MessageTooLarge"] = "MessageTooLarge";
|
|
37
|
+
BounceType["TemporaryFailure"] = "TemporaryFailure";
|
|
38
|
+
BounceType["Undefined"] = "Undefined";
|
|
39
|
+
})(BounceType || (BounceType = {}));
|
|
40
|
+
export var DsnAction;
|
|
41
|
+
(function (DsnAction) {
|
|
42
|
+
DsnAction["DELAYED"] = "delayed";
|
|
43
|
+
DsnAction["DELIVERED"] = "delivered";
|
|
44
|
+
DsnAction["EXPANDED"] = "expanded";
|
|
45
|
+
DsnAction["FAILED"] = "failed";
|
|
46
|
+
DsnAction["RELAYED"] = "relayed";
|
|
47
|
+
})(DsnAction || (DsnAction = {}));
|
|
48
|
+
export var ExtensionField;
|
|
49
|
+
(function (ExtensionField) {
|
|
50
|
+
ExtensionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
51
|
+
})(ExtensionField || (ExtensionField = {}));
|
|
52
|
+
export var RecipientDsnFields;
|
|
53
|
+
(function (RecipientDsnFields) {
|
|
54
|
+
RecipientDsnFields.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
55
|
+
})(RecipientDsnFields || (RecipientDsnFields = {}));
|
|
56
|
+
export var BouncedRecipientInfo;
|
|
57
|
+
(function (BouncedRecipientInfo) {
|
|
58
|
+
BouncedRecipientInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
59
|
+
})(BouncedRecipientInfo || (BouncedRecipientInfo = {}));
|
|
60
|
+
export var Destination;
|
|
61
|
+
(function (Destination) {
|
|
62
|
+
Destination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
63
|
+
})(Destination || (Destination = {}));
|
|
64
|
+
export var MessageTag;
|
|
65
|
+
(function (MessageTag) {
|
|
66
|
+
MessageTag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
67
|
+
})(MessageTag || (MessageTag = {}));
|
|
68
|
+
export var BulkEmailDestination;
|
|
69
|
+
(function (BulkEmailDestination) {
|
|
70
|
+
BulkEmailDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
71
|
+
})(BulkEmailDestination || (BulkEmailDestination = {}));
|
|
72
|
+
export var BulkEmailStatus;
|
|
73
|
+
(function (BulkEmailStatus) {
|
|
74
|
+
BulkEmailStatus["AccountDailyQuotaExceeded"] = "AccountDailyQuotaExceeded";
|
|
75
|
+
BulkEmailStatus["AccountSendingPaused"] = "AccountSendingPaused";
|
|
76
|
+
BulkEmailStatus["AccountSuspended"] = "AccountSuspended";
|
|
77
|
+
BulkEmailStatus["AccountThrottled"] = "AccountThrottled";
|
|
78
|
+
BulkEmailStatus["ConfigurationSetDoesNotExist"] = "ConfigurationSetDoesNotExist";
|
|
79
|
+
BulkEmailStatus["ConfigurationSetSendingPaused"] = "ConfigurationSetSendingPaused";
|
|
80
|
+
BulkEmailStatus["Failed"] = "Failed";
|
|
81
|
+
BulkEmailStatus["InvalidParameterValue"] = "InvalidParameterValue";
|
|
82
|
+
BulkEmailStatus["InvalidSendingPoolName"] = "InvalidSendingPoolName";
|
|
83
|
+
BulkEmailStatus["MailFromDomainNotVerified"] = "MailFromDomainNotVerified";
|
|
84
|
+
BulkEmailStatus["MessageRejected"] = "MessageRejected";
|
|
85
|
+
BulkEmailStatus["Success"] = "Success";
|
|
86
|
+
BulkEmailStatus["TemplateDoesNotExist"] = "TemplateDoesNotExist";
|
|
87
|
+
BulkEmailStatus["TransientFailure"] = "TransientFailure";
|
|
88
|
+
})(BulkEmailStatus || (BulkEmailStatus = {}));
|
|
89
|
+
export var BulkEmailDestinationStatus;
|
|
90
|
+
(function (BulkEmailDestinationStatus) {
|
|
91
|
+
BulkEmailDestinationStatus.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
|
+
})(BulkEmailDestinationStatus || (BulkEmailDestinationStatus = {}));
|
|
93
|
+
export var CannotDeleteException;
|
|
94
|
+
(function (CannotDeleteException) {
|
|
95
|
+
CannotDeleteException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
+
})(CannotDeleteException || (CannotDeleteException = {}));
|
|
97
|
+
export var CloneReceiptRuleSetRequest;
|
|
98
|
+
(function (CloneReceiptRuleSetRequest) {
|
|
99
|
+
CloneReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
+
})(CloneReceiptRuleSetRequest || (CloneReceiptRuleSetRequest = {}));
|
|
101
|
+
export var CloneReceiptRuleSetResponse;
|
|
102
|
+
(function (CloneReceiptRuleSetResponse) {
|
|
103
|
+
CloneReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
+
})(CloneReceiptRuleSetResponse || (CloneReceiptRuleSetResponse = {}));
|
|
105
|
+
export var LimitExceededException;
|
|
106
|
+
(function (LimitExceededException) {
|
|
107
|
+
LimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
+
})(LimitExceededException || (LimitExceededException = {}));
|
|
109
|
+
export var RuleSetDoesNotExistException;
|
|
110
|
+
(function (RuleSetDoesNotExistException) {
|
|
111
|
+
RuleSetDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
+
})(RuleSetDoesNotExistException || (RuleSetDoesNotExistException = {}));
|
|
113
|
+
export var DimensionValueSource;
|
|
114
|
+
(function (DimensionValueSource) {
|
|
115
|
+
DimensionValueSource["EMAIL_HEADER"] = "emailHeader";
|
|
116
|
+
DimensionValueSource["LINK_TAG"] = "linkTag";
|
|
117
|
+
DimensionValueSource["MESSAGE_TAG"] = "messageTag";
|
|
118
|
+
})(DimensionValueSource || (DimensionValueSource = {}));
|
|
119
|
+
export var CloudWatchDimensionConfiguration;
|
|
120
|
+
(function (CloudWatchDimensionConfiguration) {
|
|
121
|
+
CloudWatchDimensionConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
})(CloudWatchDimensionConfiguration || (CloudWatchDimensionConfiguration = {}));
|
|
123
|
+
export var CloudWatchDestination;
|
|
124
|
+
(function (CloudWatchDestination) {
|
|
125
|
+
CloudWatchDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
})(CloudWatchDestination || (CloudWatchDestination = {}));
|
|
127
|
+
export var ConfigurationSet;
|
|
128
|
+
(function (ConfigurationSet) {
|
|
129
|
+
ConfigurationSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
})(ConfigurationSet || (ConfigurationSet = {}));
|
|
131
|
+
export var ConfigurationSetAlreadyExistsException;
|
|
132
|
+
(function (ConfigurationSetAlreadyExistsException) {
|
|
133
|
+
ConfigurationSetAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
})(ConfigurationSetAlreadyExistsException || (ConfigurationSetAlreadyExistsException = {}));
|
|
135
|
+
export var ConfigurationSetAttribute;
|
|
136
|
+
(function (ConfigurationSetAttribute) {
|
|
137
|
+
ConfigurationSetAttribute["DELIVERY_OPTIONS"] = "deliveryOptions";
|
|
138
|
+
ConfigurationSetAttribute["EVENT_DESTINATIONS"] = "eventDestinations";
|
|
139
|
+
ConfigurationSetAttribute["REPUTATION_OPTIONS"] = "reputationOptions";
|
|
140
|
+
ConfigurationSetAttribute["TRACKING_OPTIONS"] = "trackingOptions";
|
|
141
|
+
})(ConfigurationSetAttribute || (ConfigurationSetAttribute = {}));
|
|
142
|
+
export var ConfigurationSetDoesNotExistException;
|
|
143
|
+
(function (ConfigurationSetDoesNotExistException) {
|
|
144
|
+
ConfigurationSetDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
})(ConfigurationSetDoesNotExistException || (ConfigurationSetDoesNotExistException = {}));
|
|
146
|
+
export var ConfigurationSetSendingPausedException;
|
|
147
|
+
(function (ConfigurationSetSendingPausedException) {
|
|
148
|
+
ConfigurationSetSendingPausedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
})(ConfigurationSetSendingPausedException || (ConfigurationSetSendingPausedException = {}));
|
|
150
|
+
export var CreateConfigurationSetRequest;
|
|
151
|
+
(function (CreateConfigurationSetRequest) {
|
|
152
|
+
CreateConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
})(CreateConfigurationSetRequest || (CreateConfigurationSetRequest = {}));
|
|
154
|
+
export var CreateConfigurationSetResponse;
|
|
155
|
+
(function (CreateConfigurationSetResponse) {
|
|
156
|
+
CreateConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
})(CreateConfigurationSetResponse || (CreateConfigurationSetResponse = {}));
|
|
158
|
+
export var InvalidConfigurationSetException;
|
|
159
|
+
(function (InvalidConfigurationSetException) {
|
|
160
|
+
InvalidConfigurationSetException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
})(InvalidConfigurationSetException || (InvalidConfigurationSetException = {}));
|
|
162
|
+
export var KinesisFirehoseDestination;
|
|
163
|
+
(function (KinesisFirehoseDestination) {
|
|
164
|
+
KinesisFirehoseDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
})(KinesisFirehoseDestination || (KinesisFirehoseDestination = {}));
|
|
166
|
+
export var EventType;
|
|
167
|
+
(function (EventType) {
|
|
168
|
+
EventType["BOUNCE"] = "bounce";
|
|
169
|
+
EventType["CLICK"] = "click";
|
|
170
|
+
EventType["COMPLAINT"] = "complaint";
|
|
171
|
+
EventType["DELIVERY"] = "delivery";
|
|
172
|
+
EventType["OPEN"] = "open";
|
|
173
|
+
EventType["REJECT"] = "reject";
|
|
174
|
+
EventType["RENDERING_FAILURE"] = "renderingFailure";
|
|
175
|
+
EventType["SEND"] = "send";
|
|
176
|
+
})(EventType || (EventType = {}));
|
|
177
|
+
export var SNSDestination;
|
|
178
|
+
(function (SNSDestination) {
|
|
179
|
+
SNSDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
})(SNSDestination || (SNSDestination = {}));
|
|
181
|
+
export var EventDestination;
|
|
182
|
+
(function (EventDestination) {
|
|
183
|
+
EventDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
})(EventDestination || (EventDestination = {}));
|
|
185
|
+
export var CreateConfigurationSetEventDestinationRequest;
|
|
186
|
+
(function (CreateConfigurationSetEventDestinationRequest) {
|
|
187
|
+
CreateConfigurationSetEventDestinationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
})(CreateConfigurationSetEventDestinationRequest || (CreateConfigurationSetEventDestinationRequest = {}));
|
|
189
|
+
export var CreateConfigurationSetEventDestinationResponse;
|
|
190
|
+
(function (CreateConfigurationSetEventDestinationResponse) {
|
|
191
|
+
CreateConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
})(CreateConfigurationSetEventDestinationResponse || (CreateConfigurationSetEventDestinationResponse = {}));
|
|
193
|
+
export var EventDestinationAlreadyExistsException;
|
|
194
|
+
(function (EventDestinationAlreadyExistsException) {
|
|
195
|
+
EventDestinationAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
})(EventDestinationAlreadyExistsException || (EventDestinationAlreadyExistsException = {}));
|
|
197
|
+
export var InvalidCloudWatchDestinationException;
|
|
198
|
+
(function (InvalidCloudWatchDestinationException) {
|
|
199
|
+
InvalidCloudWatchDestinationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
})(InvalidCloudWatchDestinationException || (InvalidCloudWatchDestinationException = {}));
|
|
201
|
+
export var InvalidFirehoseDestinationException;
|
|
202
|
+
(function (InvalidFirehoseDestinationException) {
|
|
203
|
+
InvalidFirehoseDestinationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
})(InvalidFirehoseDestinationException || (InvalidFirehoseDestinationException = {}));
|
|
205
|
+
export var InvalidSNSDestinationException;
|
|
206
|
+
(function (InvalidSNSDestinationException) {
|
|
207
|
+
InvalidSNSDestinationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
})(InvalidSNSDestinationException || (InvalidSNSDestinationException = {}));
|
|
209
|
+
export var TrackingOptions;
|
|
210
|
+
(function (TrackingOptions) {
|
|
211
|
+
TrackingOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
})(TrackingOptions || (TrackingOptions = {}));
|
|
213
|
+
export var CreateConfigurationSetTrackingOptionsRequest;
|
|
214
|
+
(function (CreateConfigurationSetTrackingOptionsRequest) {
|
|
215
|
+
CreateConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
})(CreateConfigurationSetTrackingOptionsRequest || (CreateConfigurationSetTrackingOptionsRequest = {}));
|
|
217
|
+
export var CreateConfigurationSetTrackingOptionsResponse;
|
|
218
|
+
(function (CreateConfigurationSetTrackingOptionsResponse) {
|
|
219
|
+
CreateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
})(CreateConfigurationSetTrackingOptionsResponse || (CreateConfigurationSetTrackingOptionsResponse = {}));
|
|
221
|
+
export var InvalidTrackingOptionsException;
|
|
222
|
+
(function (InvalidTrackingOptionsException) {
|
|
223
|
+
InvalidTrackingOptionsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
})(InvalidTrackingOptionsException || (InvalidTrackingOptionsException = {}));
|
|
225
|
+
export var TrackingOptionsAlreadyExistsException;
|
|
226
|
+
(function (TrackingOptionsAlreadyExistsException) {
|
|
227
|
+
TrackingOptionsAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
})(TrackingOptionsAlreadyExistsException || (TrackingOptionsAlreadyExistsException = {}));
|
|
229
|
+
export var CreateCustomVerificationEmailTemplateRequest;
|
|
230
|
+
(function (CreateCustomVerificationEmailTemplateRequest) {
|
|
231
|
+
CreateCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
})(CreateCustomVerificationEmailTemplateRequest || (CreateCustomVerificationEmailTemplateRequest = {}));
|
|
233
|
+
export var CustomVerificationEmailInvalidContentException;
|
|
234
|
+
(function (CustomVerificationEmailInvalidContentException) {
|
|
235
|
+
CustomVerificationEmailInvalidContentException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
})(CustomVerificationEmailInvalidContentException || (CustomVerificationEmailInvalidContentException = {}));
|
|
237
|
+
export var CustomVerificationEmailTemplateAlreadyExistsException;
|
|
238
|
+
(function (CustomVerificationEmailTemplateAlreadyExistsException) {
|
|
239
|
+
CustomVerificationEmailTemplateAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
})(CustomVerificationEmailTemplateAlreadyExistsException || (CustomVerificationEmailTemplateAlreadyExistsException = {}));
|
|
241
|
+
export var FromEmailAddressNotVerifiedException;
|
|
242
|
+
(function (FromEmailAddressNotVerifiedException) {
|
|
243
|
+
FromEmailAddressNotVerifiedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
})(FromEmailAddressNotVerifiedException || (FromEmailAddressNotVerifiedException = {}));
|
|
245
|
+
export var ReceiptFilterPolicy;
|
|
246
|
+
(function (ReceiptFilterPolicy) {
|
|
247
|
+
ReceiptFilterPolicy["Allow"] = "Allow";
|
|
248
|
+
ReceiptFilterPolicy["Block"] = "Block";
|
|
249
|
+
})(ReceiptFilterPolicy || (ReceiptFilterPolicy = {}));
|
|
250
|
+
export var ReceiptIpFilter;
|
|
251
|
+
(function (ReceiptIpFilter) {
|
|
252
|
+
ReceiptIpFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
})(ReceiptIpFilter || (ReceiptIpFilter = {}));
|
|
254
|
+
export var ReceiptFilter;
|
|
255
|
+
(function (ReceiptFilter) {
|
|
256
|
+
ReceiptFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
})(ReceiptFilter || (ReceiptFilter = {}));
|
|
258
|
+
export var CreateReceiptFilterRequest;
|
|
259
|
+
(function (CreateReceiptFilterRequest) {
|
|
260
|
+
CreateReceiptFilterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
})(CreateReceiptFilterRequest || (CreateReceiptFilterRequest = {}));
|
|
262
|
+
export var CreateReceiptFilterResponse;
|
|
263
|
+
(function (CreateReceiptFilterResponse) {
|
|
264
|
+
CreateReceiptFilterResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
})(CreateReceiptFilterResponse || (CreateReceiptFilterResponse = {}));
|
|
266
|
+
export var LambdaAction;
|
|
267
|
+
(function (LambdaAction) {
|
|
268
|
+
LambdaAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
})(LambdaAction || (LambdaAction = {}));
|
|
270
|
+
export var S3Action;
|
|
271
|
+
(function (S3Action) {
|
|
272
|
+
S3Action.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
})(S3Action || (S3Action = {}));
|
|
274
|
+
export var SNSActionEncoding;
|
|
275
|
+
(function (SNSActionEncoding) {
|
|
276
|
+
SNSActionEncoding["Base64"] = "Base64";
|
|
277
|
+
SNSActionEncoding["UTF8"] = "UTF-8";
|
|
278
|
+
})(SNSActionEncoding || (SNSActionEncoding = {}));
|
|
279
|
+
export var SNSAction;
|
|
280
|
+
(function (SNSAction) {
|
|
281
|
+
SNSAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
})(SNSAction || (SNSAction = {}));
|
|
283
|
+
export var StopScope;
|
|
284
|
+
(function (StopScope) {
|
|
285
|
+
StopScope["RULE_SET"] = "RuleSet";
|
|
286
|
+
})(StopScope || (StopScope = {}));
|
|
287
|
+
export var StopAction;
|
|
288
|
+
(function (StopAction) {
|
|
289
|
+
StopAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
})(StopAction || (StopAction = {}));
|
|
291
|
+
export var WorkmailAction;
|
|
292
|
+
(function (WorkmailAction) {
|
|
293
|
+
WorkmailAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
})(WorkmailAction || (WorkmailAction = {}));
|
|
295
|
+
export var ReceiptAction;
|
|
296
|
+
(function (ReceiptAction) {
|
|
297
|
+
ReceiptAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
})(ReceiptAction || (ReceiptAction = {}));
|
|
299
|
+
export var TlsPolicy;
|
|
300
|
+
(function (TlsPolicy) {
|
|
301
|
+
TlsPolicy["Optional"] = "Optional";
|
|
302
|
+
TlsPolicy["Require"] = "Require";
|
|
303
|
+
})(TlsPolicy || (TlsPolicy = {}));
|
|
304
|
+
export var ReceiptRule;
|
|
305
|
+
(function (ReceiptRule) {
|
|
306
|
+
ReceiptRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
})(ReceiptRule || (ReceiptRule = {}));
|
|
308
|
+
export var CreateReceiptRuleRequest;
|
|
309
|
+
(function (CreateReceiptRuleRequest) {
|
|
310
|
+
CreateReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
})(CreateReceiptRuleRequest || (CreateReceiptRuleRequest = {}));
|
|
312
|
+
export var CreateReceiptRuleResponse;
|
|
313
|
+
(function (CreateReceiptRuleResponse) {
|
|
314
|
+
CreateReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
})(CreateReceiptRuleResponse || (CreateReceiptRuleResponse = {}));
|
|
316
|
+
export var InvalidLambdaFunctionException;
|
|
317
|
+
(function (InvalidLambdaFunctionException) {
|
|
318
|
+
InvalidLambdaFunctionException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
})(InvalidLambdaFunctionException || (InvalidLambdaFunctionException = {}));
|
|
320
|
+
export var InvalidS3ConfigurationException;
|
|
321
|
+
(function (InvalidS3ConfigurationException) {
|
|
322
|
+
InvalidS3ConfigurationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
})(InvalidS3ConfigurationException || (InvalidS3ConfigurationException = {}));
|
|
324
|
+
export var InvalidSnsTopicException;
|
|
325
|
+
(function (InvalidSnsTopicException) {
|
|
326
|
+
InvalidSnsTopicException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
})(InvalidSnsTopicException || (InvalidSnsTopicException = {}));
|
|
328
|
+
export var RuleDoesNotExistException;
|
|
329
|
+
(function (RuleDoesNotExistException) {
|
|
330
|
+
RuleDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
})(RuleDoesNotExistException || (RuleDoesNotExistException = {}));
|
|
332
|
+
export var CreateReceiptRuleSetRequest;
|
|
333
|
+
(function (CreateReceiptRuleSetRequest) {
|
|
334
|
+
CreateReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
})(CreateReceiptRuleSetRequest || (CreateReceiptRuleSetRequest = {}));
|
|
336
|
+
export var CreateReceiptRuleSetResponse;
|
|
337
|
+
(function (CreateReceiptRuleSetResponse) {
|
|
338
|
+
CreateReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
})(CreateReceiptRuleSetResponse || (CreateReceiptRuleSetResponse = {}));
|
|
340
|
+
export var Template;
|
|
341
|
+
(function (Template) {
|
|
342
|
+
Template.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
})(Template || (Template = {}));
|
|
344
|
+
export var CreateTemplateRequest;
|
|
345
|
+
(function (CreateTemplateRequest) {
|
|
346
|
+
CreateTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
})(CreateTemplateRequest || (CreateTemplateRequest = {}));
|
|
348
|
+
export var CreateTemplateResponse;
|
|
349
|
+
(function (CreateTemplateResponse) {
|
|
350
|
+
CreateTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
})(CreateTemplateResponse || (CreateTemplateResponse = {}));
|
|
352
|
+
export var InvalidTemplateException;
|
|
353
|
+
(function (InvalidTemplateException) {
|
|
354
|
+
InvalidTemplateException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
})(InvalidTemplateException || (InvalidTemplateException = {}));
|
|
356
|
+
export var CustomMailFromStatus;
|
|
357
|
+
(function (CustomMailFromStatus) {
|
|
358
|
+
CustomMailFromStatus["Failed"] = "Failed";
|
|
359
|
+
CustomMailFromStatus["Pending"] = "Pending";
|
|
360
|
+
CustomMailFromStatus["Success"] = "Success";
|
|
361
|
+
CustomMailFromStatus["TemporaryFailure"] = "TemporaryFailure";
|
|
362
|
+
})(CustomMailFromStatus || (CustomMailFromStatus = {}));
|
|
363
|
+
export var CustomVerificationEmailTemplate;
|
|
364
|
+
(function (CustomVerificationEmailTemplate) {
|
|
365
|
+
CustomVerificationEmailTemplate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
})(CustomVerificationEmailTemplate || (CustomVerificationEmailTemplate = {}));
|
|
367
|
+
export var CustomVerificationEmailTemplateDoesNotExistException;
|
|
368
|
+
(function (CustomVerificationEmailTemplateDoesNotExistException) {
|
|
369
|
+
CustomVerificationEmailTemplateDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
})(CustomVerificationEmailTemplateDoesNotExistException || (CustomVerificationEmailTemplateDoesNotExistException = {}));
|
|
371
|
+
export var DeleteConfigurationSetRequest;
|
|
372
|
+
(function (DeleteConfigurationSetRequest) {
|
|
373
|
+
DeleteConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
374
|
+
})(DeleteConfigurationSetRequest || (DeleteConfigurationSetRequest = {}));
|
|
375
|
+
export var DeleteConfigurationSetResponse;
|
|
376
|
+
(function (DeleteConfigurationSetResponse) {
|
|
377
|
+
DeleteConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
378
|
+
})(DeleteConfigurationSetResponse || (DeleteConfigurationSetResponse = {}));
|
|
379
|
+
export var DeleteConfigurationSetEventDestinationRequest;
|
|
380
|
+
(function (DeleteConfigurationSetEventDestinationRequest) {
|
|
381
|
+
DeleteConfigurationSetEventDestinationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
382
|
+
})(DeleteConfigurationSetEventDestinationRequest || (DeleteConfigurationSetEventDestinationRequest = {}));
|
|
383
|
+
export var DeleteConfigurationSetEventDestinationResponse;
|
|
384
|
+
(function (DeleteConfigurationSetEventDestinationResponse) {
|
|
385
|
+
DeleteConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
386
|
+
})(DeleteConfigurationSetEventDestinationResponse || (DeleteConfigurationSetEventDestinationResponse = {}));
|
|
387
|
+
export var EventDestinationDoesNotExistException;
|
|
388
|
+
(function (EventDestinationDoesNotExistException) {
|
|
389
|
+
EventDestinationDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
390
|
+
})(EventDestinationDoesNotExistException || (EventDestinationDoesNotExistException = {}));
|
|
391
|
+
export var DeleteConfigurationSetTrackingOptionsRequest;
|
|
392
|
+
(function (DeleteConfigurationSetTrackingOptionsRequest) {
|
|
393
|
+
DeleteConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
394
|
+
})(DeleteConfigurationSetTrackingOptionsRequest || (DeleteConfigurationSetTrackingOptionsRequest = {}));
|
|
395
|
+
export var DeleteConfigurationSetTrackingOptionsResponse;
|
|
396
|
+
(function (DeleteConfigurationSetTrackingOptionsResponse) {
|
|
397
|
+
DeleteConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
398
|
+
})(DeleteConfigurationSetTrackingOptionsResponse || (DeleteConfigurationSetTrackingOptionsResponse = {}));
|
|
399
|
+
export var TrackingOptionsDoesNotExistException;
|
|
400
|
+
(function (TrackingOptionsDoesNotExistException) {
|
|
401
|
+
TrackingOptionsDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
402
|
+
})(TrackingOptionsDoesNotExistException || (TrackingOptionsDoesNotExistException = {}));
|
|
403
|
+
export var DeleteCustomVerificationEmailTemplateRequest;
|
|
404
|
+
(function (DeleteCustomVerificationEmailTemplateRequest) {
|
|
405
|
+
DeleteCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
406
|
+
})(DeleteCustomVerificationEmailTemplateRequest || (DeleteCustomVerificationEmailTemplateRequest = {}));
|
|
407
|
+
export var DeleteIdentityRequest;
|
|
408
|
+
(function (DeleteIdentityRequest) {
|
|
409
|
+
DeleteIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
410
|
+
})(DeleteIdentityRequest || (DeleteIdentityRequest = {}));
|
|
411
|
+
export var DeleteIdentityResponse;
|
|
412
|
+
(function (DeleteIdentityResponse) {
|
|
413
|
+
DeleteIdentityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
414
|
+
})(DeleteIdentityResponse || (DeleteIdentityResponse = {}));
|
|
415
|
+
export var DeleteIdentityPolicyRequest;
|
|
416
|
+
(function (DeleteIdentityPolicyRequest) {
|
|
417
|
+
DeleteIdentityPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
418
|
+
})(DeleteIdentityPolicyRequest || (DeleteIdentityPolicyRequest = {}));
|
|
419
|
+
export var DeleteIdentityPolicyResponse;
|
|
420
|
+
(function (DeleteIdentityPolicyResponse) {
|
|
421
|
+
DeleteIdentityPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
422
|
+
})(DeleteIdentityPolicyResponse || (DeleteIdentityPolicyResponse = {}));
|
|
423
|
+
export var DeleteReceiptFilterRequest;
|
|
424
|
+
(function (DeleteReceiptFilterRequest) {
|
|
425
|
+
DeleteReceiptFilterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
|
+
})(DeleteReceiptFilterRequest || (DeleteReceiptFilterRequest = {}));
|
|
427
|
+
export var DeleteReceiptFilterResponse;
|
|
428
|
+
(function (DeleteReceiptFilterResponse) {
|
|
429
|
+
DeleteReceiptFilterResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
430
|
+
})(DeleteReceiptFilterResponse || (DeleteReceiptFilterResponse = {}));
|
|
431
|
+
export var DeleteReceiptRuleRequest;
|
|
432
|
+
(function (DeleteReceiptRuleRequest) {
|
|
433
|
+
DeleteReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
434
|
+
})(DeleteReceiptRuleRequest || (DeleteReceiptRuleRequest = {}));
|
|
435
|
+
export var DeleteReceiptRuleResponse;
|
|
436
|
+
(function (DeleteReceiptRuleResponse) {
|
|
437
|
+
DeleteReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
|
+
})(DeleteReceiptRuleResponse || (DeleteReceiptRuleResponse = {}));
|
|
439
|
+
export var DeleteReceiptRuleSetRequest;
|
|
440
|
+
(function (DeleteReceiptRuleSetRequest) {
|
|
441
|
+
DeleteReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
442
|
+
})(DeleteReceiptRuleSetRequest || (DeleteReceiptRuleSetRequest = {}));
|
|
443
|
+
export var DeleteReceiptRuleSetResponse;
|
|
444
|
+
(function (DeleteReceiptRuleSetResponse) {
|
|
445
|
+
DeleteReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
|
+
})(DeleteReceiptRuleSetResponse || (DeleteReceiptRuleSetResponse = {}));
|
|
447
|
+
export var DeleteTemplateRequest;
|
|
448
|
+
(function (DeleteTemplateRequest) {
|
|
449
|
+
DeleteTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
|
+
})(DeleteTemplateRequest || (DeleteTemplateRequest = {}));
|
|
451
|
+
export var DeleteTemplateResponse;
|
|
452
|
+
(function (DeleteTemplateResponse) {
|
|
453
|
+
DeleteTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
454
|
+
})(DeleteTemplateResponse || (DeleteTemplateResponse = {}));
|
|
455
|
+
export var DeleteVerifiedEmailAddressRequest;
|
|
456
|
+
(function (DeleteVerifiedEmailAddressRequest) {
|
|
457
|
+
DeleteVerifiedEmailAddressRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
458
|
+
})(DeleteVerifiedEmailAddressRequest || (DeleteVerifiedEmailAddressRequest = {}));
|
|
459
|
+
export var DeliveryOptions;
|
|
460
|
+
(function (DeliveryOptions) {
|
|
461
|
+
DeliveryOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
462
|
+
})(DeliveryOptions || (DeliveryOptions = {}));
|
|
463
|
+
export var DescribeActiveReceiptRuleSetRequest;
|
|
464
|
+
(function (DescribeActiveReceiptRuleSetRequest) {
|
|
465
|
+
DescribeActiveReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
466
|
+
})(DescribeActiveReceiptRuleSetRequest || (DescribeActiveReceiptRuleSetRequest = {}));
|
|
467
|
+
export var ReceiptRuleSetMetadata;
|
|
468
|
+
(function (ReceiptRuleSetMetadata) {
|
|
469
|
+
ReceiptRuleSetMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
470
|
+
})(ReceiptRuleSetMetadata || (ReceiptRuleSetMetadata = {}));
|
|
471
|
+
export var DescribeActiveReceiptRuleSetResponse;
|
|
472
|
+
(function (DescribeActiveReceiptRuleSetResponse) {
|
|
473
|
+
DescribeActiveReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
474
|
+
})(DescribeActiveReceiptRuleSetResponse || (DescribeActiveReceiptRuleSetResponse = {}));
|
|
475
|
+
export var DescribeConfigurationSetRequest;
|
|
476
|
+
(function (DescribeConfigurationSetRequest) {
|
|
477
|
+
DescribeConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
478
|
+
})(DescribeConfigurationSetRequest || (DescribeConfigurationSetRequest = {}));
|
|
479
|
+
export var ReputationOptions;
|
|
480
|
+
(function (ReputationOptions) {
|
|
481
|
+
ReputationOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
482
|
+
})(ReputationOptions || (ReputationOptions = {}));
|
|
483
|
+
export var DescribeConfigurationSetResponse;
|
|
484
|
+
(function (DescribeConfigurationSetResponse) {
|
|
485
|
+
DescribeConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
486
|
+
})(DescribeConfigurationSetResponse || (DescribeConfigurationSetResponse = {}));
|
|
487
|
+
export var DescribeReceiptRuleRequest;
|
|
488
|
+
(function (DescribeReceiptRuleRequest) {
|
|
489
|
+
DescribeReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
490
|
+
})(DescribeReceiptRuleRequest || (DescribeReceiptRuleRequest = {}));
|
|
491
|
+
export var DescribeReceiptRuleResponse;
|
|
492
|
+
(function (DescribeReceiptRuleResponse) {
|
|
493
|
+
DescribeReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
494
|
+
})(DescribeReceiptRuleResponse || (DescribeReceiptRuleResponse = {}));
|
|
495
|
+
export var DescribeReceiptRuleSetRequest;
|
|
496
|
+
(function (DescribeReceiptRuleSetRequest) {
|
|
497
|
+
DescribeReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
498
|
+
})(DescribeReceiptRuleSetRequest || (DescribeReceiptRuleSetRequest = {}));
|
|
499
|
+
export var DescribeReceiptRuleSetResponse;
|
|
500
|
+
(function (DescribeReceiptRuleSetResponse) {
|
|
501
|
+
DescribeReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
502
|
+
})(DescribeReceiptRuleSetResponse || (DescribeReceiptRuleSetResponse = {}));
|
|
503
|
+
export var IdentityDkimAttributes;
|
|
504
|
+
(function (IdentityDkimAttributes) {
|
|
505
|
+
IdentityDkimAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
|
+
})(IdentityDkimAttributes || (IdentityDkimAttributes = {}));
|
|
507
|
+
export var GetAccountSendingEnabledResponse;
|
|
508
|
+
(function (GetAccountSendingEnabledResponse) {
|
|
509
|
+
GetAccountSendingEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
510
|
+
})(GetAccountSendingEnabledResponse || (GetAccountSendingEnabledResponse = {}));
|
|
511
|
+
export var GetCustomVerificationEmailTemplateRequest;
|
|
512
|
+
(function (GetCustomVerificationEmailTemplateRequest) {
|
|
513
|
+
GetCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
514
|
+
})(GetCustomVerificationEmailTemplateRequest || (GetCustomVerificationEmailTemplateRequest = {}));
|
|
515
|
+
export var GetCustomVerificationEmailTemplateResponse;
|
|
516
|
+
(function (GetCustomVerificationEmailTemplateResponse) {
|
|
517
|
+
GetCustomVerificationEmailTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
518
|
+
})(GetCustomVerificationEmailTemplateResponse || (GetCustomVerificationEmailTemplateResponse = {}));
|
|
519
|
+
export var GetIdentityDkimAttributesRequest;
|
|
520
|
+
(function (GetIdentityDkimAttributesRequest) {
|
|
521
|
+
GetIdentityDkimAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
522
|
+
})(GetIdentityDkimAttributesRequest || (GetIdentityDkimAttributesRequest = {}));
|
|
523
|
+
export var GetIdentityDkimAttributesResponse;
|
|
524
|
+
(function (GetIdentityDkimAttributesResponse) {
|
|
525
|
+
GetIdentityDkimAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
+
})(GetIdentityDkimAttributesResponse || (GetIdentityDkimAttributesResponse = {}));
|
|
527
|
+
export var GetIdentityMailFromDomainAttributesRequest;
|
|
528
|
+
(function (GetIdentityMailFromDomainAttributesRequest) {
|
|
529
|
+
GetIdentityMailFromDomainAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
530
|
+
})(GetIdentityMailFromDomainAttributesRequest || (GetIdentityMailFromDomainAttributesRequest = {}));
|
|
531
|
+
export var IdentityMailFromDomainAttributes;
|
|
532
|
+
(function (IdentityMailFromDomainAttributes) {
|
|
533
|
+
IdentityMailFromDomainAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
534
|
+
})(IdentityMailFromDomainAttributes || (IdentityMailFromDomainAttributes = {}));
|
|
535
|
+
export var GetIdentityMailFromDomainAttributesResponse;
|
|
536
|
+
(function (GetIdentityMailFromDomainAttributesResponse) {
|
|
537
|
+
GetIdentityMailFromDomainAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
538
|
+
})(GetIdentityMailFromDomainAttributesResponse || (GetIdentityMailFromDomainAttributesResponse = {}));
|
|
539
|
+
export var GetIdentityNotificationAttributesRequest;
|
|
540
|
+
(function (GetIdentityNotificationAttributesRequest) {
|
|
541
|
+
GetIdentityNotificationAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
542
|
+
})(GetIdentityNotificationAttributesRequest || (GetIdentityNotificationAttributesRequest = {}));
|
|
543
|
+
export var IdentityNotificationAttributes;
|
|
544
|
+
(function (IdentityNotificationAttributes) {
|
|
545
|
+
IdentityNotificationAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
546
|
+
})(IdentityNotificationAttributes || (IdentityNotificationAttributes = {}));
|
|
547
|
+
export var GetIdentityNotificationAttributesResponse;
|
|
548
|
+
(function (GetIdentityNotificationAttributesResponse) {
|
|
549
|
+
GetIdentityNotificationAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
550
|
+
})(GetIdentityNotificationAttributesResponse || (GetIdentityNotificationAttributesResponse = {}));
|
|
551
|
+
export var GetIdentityPoliciesRequest;
|
|
552
|
+
(function (GetIdentityPoliciesRequest) {
|
|
553
|
+
GetIdentityPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
554
|
+
})(GetIdentityPoliciesRequest || (GetIdentityPoliciesRequest = {}));
|
|
555
|
+
export var GetIdentityPoliciesResponse;
|
|
556
|
+
(function (GetIdentityPoliciesResponse) {
|
|
557
|
+
GetIdentityPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
558
|
+
})(GetIdentityPoliciesResponse || (GetIdentityPoliciesResponse = {}));
|
|
559
|
+
export var GetIdentityVerificationAttributesRequest;
|
|
560
|
+
(function (GetIdentityVerificationAttributesRequest) {
|
|
561
|
+
GetIdentityVerificationAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
562
|
+
})(GetIdentityVerificationAttributesRequest || (GetIdentityVerificationAttributesRequest = {}));
|
|
563
|
+
export var IdentityVerificationAttributes;
|
|
564
|
+
(function (IdentityVerificationAttributes) {
|
|
565
|
+
IdentityVerificationAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
|
+
})(IdentityVerificationAttributes || (IdentityVerificationAttributes = {}));
|
|
567
|
+
export var GetIdentityVerificationAttributesResponse;
|
|
568
|
+
(function (GetIdentityVerificationAttributesResponse) {
|
|
569
|
+
GetIdentityVerificationAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
570
|
+
})(GetIdentityVerificationAttributesResponse || (GetIdentityVerificationAttributesResponse = {}));
|
|
571
|
+
export var GetSendQuotaResponse;
|
|
572
|
+
(function (GetSendQuotaResponse) {
|
|
573
|
+
GetSendQuotaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
574
|
+
})(GetSendQuotaResponse || (GetSendQuotaResponse = {}));
|
|
575
|
+
export var SendDataPoint;
|
|
576
|
+
(function (SendDataPoint) {
|
|
577
|
+
SendDataPoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
578
|
+
})(SendDataPoint || (SendDataPoint = {}));
|
|
579
|
+
export var GetSendStatisticsResponse;
|
|
580
|
+
(function (GetSendStatisticsResponse) {
|
|
581
|
+
GetSendStatisticsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
582
|
+
})(GetSendStatisticsResponse || (GetSendStatisticsResponse = {}));
|
|
583
|
+
export var GetTemplateRequest;
|
|
584
|
+
(function (GetTemplateRequest) {
|
|
585
|
+
GetTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
586
|
+
})(GetTemplateRequest || (GetTemplateRequest = {}));
|
|
587
|
+
export var GetTemplateResponse;
|
|
588
|
+
(function (GetTemplateResponse) {
|
|
589
|
+
GetTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
590
|
+
})(GetTemplateResponse || (GetTemplateResponse = {}));
|
|
591
|
+
export var TemplateDoesNotExistException;
|
|
592
|
+
(function (TemplateDoesNotExistException) {
|
|
593
|
+
TemplateDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
594
|
+
})(TemplateDoesNotExistException || (TemplateDoesNotExistException = {}));
|
|
595
|
+
export var InvalidDeliveryOptionsException;
|
|
596
|
+
(function (InvalidDeliveryOptionsException) {
|
|
597
|
+
InvalidDeliveryOptionsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
598
|
+
})(InvalidDeliveryOptionsException || (InvalidDeliveryOptionsException = {}));
|
|
599
|
+
export var InvalidPolicyException;
|
|
600
|
+
(function (InvalidPolicyException) {
|
|
601
|
+
InvalidPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
602
|
+
})(InvalidPolicyException || (InvalidPolicyException = {}));
|
|
603
|
+
export var InvalidRenderingParameterException;
|
|
604
|
+
(function (InvalidRenderingParameterException) {
|
|
605
|
+
InvalidRenderingParameterException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
606
|
+
})(InvalidRenderingParameterException || (InvalidRenderingParameterException = {}));
|
|
607
|
+
export var ListConfigurationSetsRequest;
|
|
608
|
+
(function (ListConfigurationSetsRequest) {
|
|
609
|
+
ListConfigurationSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
610
|
+
})(ListConfigurationSetsRequest || (ListConfigurationSetsRequest = {}));
|
|
611
|
+
export var ListConfigurationSetsResponse;
|
|
612
|
+
(function (ListConfigurationSetsResponse) {
|
|
613
|
+
ListConfigurationSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
614
|
+
})(ListConfigurationSetsResponse || (ListConfigurationSetsResponse = {}));
|
|
615
|
+
export var ListCustomVerificationEmailTemplatesRequest;
|
|
616
|
+
(function (ListCustomVerificationEmailTemplatesRequest) {
|
|
617
|
+
ListCustomVerificationEmailTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
618
|
+
})(ListCustomVerificationEmailTemplatesRequest || (ListCustomVerificationEmailTemplatesRequest = {}));
|
|
619
|
+
export var ListCustomVerificationEmailTemplatesResponse;
|
|
620
|
+
(function (ListCustomVerificationEmailTemplatesResponse) {
|
|
621
|
+
ListCustomVerificationEmailTemplatesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
622
|
+
})(ListCustomVerificationEmailTemplatesResponse || (ListCustomVerificationEmailTemplatesResponse = {}));
|
|
623
|
+
export var ListIdentitiesRequest;
|
|
624
|
+
(function (ListIdentitiesRequest) {
|
|
625
|
+
ListIdentitiesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
626
|
+
})(ListIdentitiesRequest || (ListIdentitiesRequest = {}));
|
|
627
|
+
export var ListIdentitiesResponse;
|
|
628
|
+
(function (ListIdentitiesResponse) {
|
|
629
|
+
ListIdentitiesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
630
|
+
})(ListIdentitiesResponse || (ListIdentitiesResponse = {}));
|
|
631
|
+
export var ListIdentityPoliciesRequest;
|
|
632
|
+
(function (ListIdentityPoliciesRequest) {
|
|
633
|
+
ListIdentityPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
634
|
+
})(ListIdentityPoliciesRequest || (ListIdentityPoliciesRequest = {}));
|
|
635
|
+
export var ListIdentityPoliciesResponse;
|
|
636
|
+
(function (ListIdentityPoliciesResponse) {
|
|
637
|
+
ListIdentityPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
638
|
+
})(ListIdentityPoliciesResponse || (ListIdentityPoliciesResponse = {}));
|
|
639
|
+
export var ListReceiptFiltersRequest;
|
|
640
|
+
(function (ListReceiptFiltersRequest) {
|
|
641
|
+
ListReceiptFiltersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
642
|
+
})(ListReceiptFiltersRequest || (ListReceiptFiltersRequest = {}));
|
|
643
|
+
export var ListReceiptFiltersResponse;
|
|
644
|
+
(function (ListReceiptFiltersResponse) {
|
|
645
|
+
ListReceiptFiltersResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
646
|
+
})(ListReceiptFiltersResponse || (ListReceiptFiltersResponse = {}));
|
|
647
|
+
export var ListReceiptRuleSetsRequest;
|
|
648
|
+
(function (ListReceiptRuleSetsRequest) {
|
|
649
|
+
ListReceiptRuleSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
650
|
+
})(ListReceiptRuleSetsRequest || (ListReceiptRuleSetsRequest = {}));
|
|
651
|
+
export var ListReceiptRuleSetsResponse;
|
|
652
|
+
(function (ListReceiptRuleSetsResponse) {
|
|
653
|
+
ListReceiptRuleSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
654
|
+
})(ListReceiptRuleSetsResponse || (ListReceiptRuleSetsResponse = {}));
|
|
655
|
+
export var ListTemplatesRequest;
|
|
656
|
+
(function (ListTemplatesRequest) {
|
|
657
|
+
ListTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
658
|
+
})(ListTemplatesRequest || (ListTemplatesRequest = {}));
|
|
659
|
+
export var TemplateMetadata;
|
|
660
|
+
(function (TemplateMetadata) {
|
|
661
|
+
TemplateMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
662
|
+
})(TemplateMetadata || (TemplateMetadata = {}));
|
|
663
|
+
export var ListTemplatesResponse;
|
|
664
|
+
(function (ListTemplatesResponse) {
|
|
665
|
+
ListTemplatesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
666
|
+
})(ListTemplatesResponse || (ListTemplatesResponse = {}));
|
|
667
|
+
export var ListVerifiedEmailAddressesResponse;
|
|
668
|
+
(function (ListVerifiedEmailAddressesResponse) {
|
|
669
|
+
ListVerifiedEmailAddressesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
670
|
+
})(ListVerifiedEmailAddressesResponse || (ListVerifiedEmailAddressesResponse = {}));
|
|
671
|
+
export var MailFromDomainNotVerifiedException;
|
|
672
|
+
(function (MailFromDomainNotVerifiedException) {
|
|
673
|
+
MailFromDomainNotVerifiedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
674
|
+
})(MailFromDomainNotVerifiedException || (MailFromDomainNotVerifiedException = {}));
|
|
675
|
+
export var Message;
|
|
676
|
+
(function (Message) {
|
|
677
|
+
Message.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
|
+
})(Message || (Message = {}));
|
|
679
|
+
export var MessageDsn;
|
|
680
|
+
(function (MessageDsn) {
|
|
681
|
+
MessageDsn.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
682
|
+
})(MessageDsn || (MessageDsn = {}));
|
|
683
|
+
export var MessageRejected;
|
|
684
|
+
(function (MessageRejected) {
|
|
685
|
+
MessageRejected.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
686
|
+
})(MessageRejected || (MessageRejected = {}));
|
|
687
|
+
export var MissingRenderingAttributeException;
|
|
688
|
+
(function (MissingRenderingAttributeException) {
|
|
689
|
+
MissingRenderingAttributeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
690
|
+
})(MissingRenderingAttributeException || (MissingRenderingAttributeException = {}));
|
|
691
|
+
export var ProductionAccessNotGrantedException;
|
|
692
|
+
(function (ProductionAccessNotGrantedException) {
|
|
693
|
+
ProductionAccessNotGrantedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
694
|
+
})(ProductionAccessNotGrantedException || (ProductionAccessNotGrantedException = {}));
|
|
695
|
+
export var PutConfigurationSetDeliveryOptionsRequest;
|
|
696
|
+
(function (PutConfigurationSetDeliveryOptionsRequest) {
|
|
697
|
+
PutConfigurationSetDeliveryOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
698
|
+
})(PutConfigurationSetDeliveryOptionsRequest || (PutConfigurationSetDeliveryOptionsRequest = {}));
|
|
699
|
+
export var PutConfigurationSetDeliveryOptionsResponse;
|
|
700
|
+
(function (PutConfigurationSetDeliveryOptionsResponse) {
|
|
701
|
+
PutConfigurationSetDeliveryOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
702
|
+
})(PutConfigurationSetDeliveryOptionsResponse || (PutConfigurationSetDeliveryOptionsResponse = {}));
|
|
703
|
+
export var PutIdentityPolicyRequest;
|
|
704
|
+
(function (PutIdentityPolicyRequest) {
|
|
705
|
+
PutIdentityPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
706
|
+
})(PutIdentityPolicyRequest || (PutIdentityPolicyRequest = {}));
|
|
707
|
+
export var PutIdentityPolicyResponse;
|
|
708
|
+
(function (PutIdentityPolicyResponse) {
|
|
709
|
+
PutIdentityPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
710
|
+
})(PutIdentityPolicyResponse || (PutIdentityPolicyResponse = {}));
|
|
711
|
+
export var RawMessage;
|
|
712
|
+
(function (RawMessage) {
|
|
713
|
+
RawMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
714
|
+
})(RawMessage || (RawMessage = {}));
|
|
715
|
+
export var ReorderReceiptRuleSetRequest;
|
|
716
|
+
(function (ReorderReceiptRuleSetRequest) {
|
|
717
|
+
ReorderReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
718
|
+
})(ReorderReceiptRuleSetRequest || (ReorderReceiptRuleSetRequest = {}));
|
|
719
|
+
export var ReorderReceiptRuleSetResponse;
|
|
720
|
+
(function (ReorderReceiptRuleSetResponse) {
|
|
721
|
+
ReorderReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
722
|
+
})(ReorderReceiptRuleSetResponse || (ReorderReceiptRuleSetResponse = {}));
|
|
723
|
+
export var SendBounceRequest;
|
|
724
|
+
(function (SendBounceRequest) {
|
|
725
|
+
SendBounceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
726
|
+
})(SendBounceRequest || (SendBounceRequest = {}));
|
|
727
|
+
export var SendBounceResponse;
|
|
728
|
+
(function (SendBounceResponse) {
|
|
729
|
+
SendBounceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
730
|
+
})(SendBounceResponse || (SendBounceResponse = {}));
|
|
731
|
+
export var SendBulkTemplatedEmailRequest;
|
|
732
|
+
(function (SendBulkTemplatedEmailRequest) {
|
|
733
|
+
SendBulkTemplatedEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
734
|
+
})(SendBulkTemplatedEmailRequest || (SendBulkTemplatedEmailRequest = {}));
|
|
735
|
+
export var SendBulkTemplatedEmailResponse;
|
|
736
|
+
(function (SendBulkTemplatedEmailResponse) {
|
|
737
|
+
SendBulkTemplatedEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
738
|
+
})(SendBulkTemplatedEmailResponse || (SendBulkTemplatedEmailResponse = {}));
|
|
739
|
+
export var SendCustomVerificationEmailRequest;
|
|
740
|
+
(function (SendCustomVerificationEmailRequest) {
|
|
741
|
+
SendCustomVerificationEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
742
|
+
})(SendCustomVerificationEmailRequest || (SendCustomVerificationEmailRequest = {}));
|
|
743
|
+
export var SendCustomVerificationEmailResponse;
|
|
744
|
+
(function (SendCustomVerificationEmailResponse) {
|
|
745
|
+
SendCustomVerificationEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
746
|
+
})(SendCustomVerificationEmailResponse || (SendCustomVerificationEmailResponse = {}));
|
|
747
|
+
export var SendEmailRequest;
|
|
748
|
+
(function (SendEmailRequest) {
|
|
749
|
+
SendEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
750
|
+
})(SendEmailRequest || (SendEmailRequest = {}));
|
|
751
|
+
export var SendEmailResponse;
|
|
752
|
+
(function (SendEmailResponse) {
|
|
753
|
+
SendEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
754
|
+
})(SendEmailResponse || (SendEmailResponse = {}));
|
|
755
|
+
export var SendRawEmailRequest;
|
|
756
|
+
(function (SendRawEmailRequest) {
|
|
757
|
+
SendRawEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
758
|
+
})(SendRawEmailRequest || (SendRawEmailRequest = {}));
|
|
759
|
+
export var SendRawEmailResponse;
|
|
760
|
+
(function (SendRawEmailResponse) {
|
|
761
|
+
SendRawEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
762
|
+
})(SendRawEmailResponse || (SendRawEmailResponse = {}));
|
|
763
|
+
export var SendTemplatedEmailRequest;
|
|
764
|
+
(function (SendTemplatedEmailRequest) {
|
|
765
|
+
SendTemplatedEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
766
|
+
})(SendTemplatedEmailRequest || (SendTemplatedEmailRequest = {}));
|
|
767
|
+
export var SendTemplatedEmailResponse;
|
|
768
|
+
(function (SendTemplatedEmailResponse) {
|
|
769
|
+
SendTemplatedEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
770
|
+
})(SendTemplatedEmailResponse || (SendTemplatedEmailResponse = {}));
|
|
771
|
+
export var SetActiveReceiptRuleSetRequest;
|
|
772
|
+
(function (SetActiveReceiptRuleSetRequest) {
|
|
773
|
+
SetActiveReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
774
|
+
})(SetActiveReceiptRuleSetRequest || (SetActiveReceiptRuleSetRequest = {}));
|
|
775
|
+
export var SetActiveReceiptRuleSetResponse;
|
|
776
|
+
(function (SetActiveReceiptRuleSetResponse) {
|
|
777
|
+
SetActiveReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
778
|
+
})(SetActiveReceiptRuleSetResponse || (SetActiveReceiptRuleSetResponse = {}));
|
|
779
|
+
export var SetIdentityDkimEnabledRequest;
|
|
780
|
+
(function (SetIdentityDkimEnabledRequest) {
|
|
781
|
+
SetIdentityDkimEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
782
|
+
})(SetIdentityDkimEnabledRequest || (SetIdentityDkimEnabledRequest = {}));
|
|
783
|
+
export var SetIdentityDkimEnabledResponse;
|
|
784
|
+
(function (SetIdentityDkimEnabledResponse) {
|
|
785
|
+
SetIdentityDkimEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
786
|
+
})(SetIdentityDkimEnabledResponse || (SetIdentityDkimEnabledResponse = {}));
|
|
787
|
+
export var SetIdentityFeedbackForwardingEnabledRequest;
|
|
788
|
+
(function (SetIdentityFeedbackForwardingEnabledRequest) {
|
|
789
|
+
SetIdentityFeedbackForwardingEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
790
|
+
})(SetIdentityFeedbackForwardingEnabledRequest || (SetIdentityFeedbackForwardingEnabledRequest = {}));
|
|
791
|
+
export var SetIdentityFeedbackForwardingEnabledResponse;
|
|
792
|
+
(function (SetIdentityFeedbackForwardingEnabledResponse) {
|
|
793
|
+
SetIdentityFeedbackForwardingEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
794
|
+
})(SetIdentityFeedbackForwardingEnabledResponse || (SetIdentityFeedbackForwardingEnabledResponse = {}));
|
|
795
|
+
export var SetIdentityHeadersInNotificationsEnabledRequest;
|
|
796
|
+
(function (SetIdentityHeadersInNotificationsEnabledRequest) {
|
|
797
|
+
SetIdentityHeadersInNotificationsEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
798
|
+
})(SetIdentityHeadersInNotificationsEnabledRequest || (SetIdentityHeadersInNotificationsEnabledRequest = {}));
|
|
799
|
+
export var SetIdentityHeadersInNotificationsEnabledResponse;
|
|
800
|
+
(function (SetIdentityHeadersInNotificationsEnabledResponse) {
|
|
801
|
+
SetIdentityHeadersInNotificationsEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
802
|
+
})(SetIdentityHeadersInNotificationsEnabledResponse || (SetIdentityHeadersInNotificationsEnabledResponse = {}));
|
|
803
|
+
export var SetIdentityMailFromDomainRequest;
|
|
804
|
+
(function (SetIdentityMailFromDomainRequest) {
|
|
805
|
+
SetIdentityMailFromDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
806
|
+
})(SetIdentityMailFromDomainRequest || (SetIdentityMailFromDomainRequest = {}));
|
|
807
|
+
export var SetIdentityMailFromDomainResponse;
|
|
808
|
+
(function (SetIdentityMailFromDomainResponse) {
|
|
809
|
+
SetIdentityMailFromDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
810
|
+
})(SetIdentityMailFromDomainResponse || (SetIdentityMailFromDomainResponse = {}));
|
|
811
|
+
export var SetIdentityNotificationTopicRequest;
|
|
812
|
+
(function (SetIdentityNotificationTopicRequest) {
|
|
813
|
+
SetIdentityNotificationTopicRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
814
|
+
})(SetIdentityNotificationTopicRequest || (SetIdentityNotificationTopicRequest = {}));
|
|
815
|
+
export var SetIdentityNotificationTopicResponse;
|
|
816
|
+
(function (SetIdentityNotificationTopicResponse) {
|
|
817
|
+
SetIdentityNotificationTopicResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
818
|
+
})(SetIdentityNotificationTopicResponse || (SetIdentityNotificationTopicResponse = {}));
|
|
819
|
+
export var SetReceiptRulePositionRequest;
|
|
820
|
+
(function (SetReceiptRulePositionRequest) {
|
|
821
|
+
SetReceiptRulePositionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
822
|
+
})(SetReceiptRulePositionRequest || (SetReceiptRulePositionRequest = {}));
|
|
823
|
+
export var SetReceiptRulePositionResponse;
|
|
824
|
+
(function (SetReceiptRulePositionResponse) {
|
|
825
|
+
SetReceiptRulePositionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
826
|
+
})(SetReceiptRulePositionResponse || (SetReceiptRulePositionResponse = {}));
|
|
827
|
+
export var TestRenderTemplateRequest;
|
|
828
|
+
(function (TestRenderTemplateRequest) {
|
|
829
|
+
TestRenderTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
830
|
+
})(TestRenderTemplateRequest || (TestRenderTemplateRequest = {}));
|
|
831
|
+
export var TestRenderTemplateResponse;
|
|
832
|
+
(function (TestRenderTemplateResponse) {
|
|
833
|
+
TestRenderTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
834
|
+
})(TestRenderTemplateResponse || (TestRenderTemplateResponse = {}));
|
|
835
|
+
export var UpdateAccountSendingEnabledRequest;
|
|
836
|
+
(function (UpdateAccountSendingEnabledRequest) {
|
|
837
|
+
UpdateAccountSendingEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
838
|
+
})(UpdateAccountSendingEnabledRequest || (UpdateAccountSendingEnabledRequest = {}));
|
|
839
|
+
export var UpdateConfigurationSetEventDestinationRequest;
|
|
840
|
+
(function (UpdateConfigurationSetEventDestinationRequest) {
|
|
841
|
+
UpdateConfigurationSetEventDestinationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
842
|
+
})(UpdateConfigurationSetEventDestinationRequest || (UpdateConfigurationSetEventDestinationRequest = {}));
|
|
843
|
+
export var UpdateConfigurationSetEventDestinationResponse;
|
|
844
|
+
(function (UpdateConfigurationSetEventDestinationResponse) {
|
|
845
|
+
UpdateConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
846
|
+
})(UpdateConfigurationSetEventDestinationResponse || (UpdateConfigurationSetEventDestinationResponse = {}));
|
|
847
|
+
export var UpdateConfigurationSetReputationMetricsEnabledRequest;
|
|
848
|
+
(function (UpdateConfigurationSetReputationMetricsEnabledRequest) {
|
|
849
|
+
UpdateConfigurationSetReputationMetricsEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
850
|
+
})(UpdateConfigurationSetReputationMetricsEnabledRequest || (UpdateConfigurationSetReputationMetricsEnabledRequest = {}));
|
|
851
|
+
export var UpdateConfigurationSetSendingEnabledRequest;
|
|
852
|
+
(function (UpdateConfigurationSetSendingEnabledRequest) {
|
|
853
|
+
UpdateConfigurationSetSendingEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
854
|
+
})(UpdateConfigurationSetSendingEnabledRequest || (UpdateConfigurationSetSendingEnabledRequest = {}));
|
|
855
|
+
export var UpdateConfigurationSetTrackingOptionsRequest;
|
|
856
|
+
(function (UpdateConfigurationSetTrackingOptionsRequest) {
|
|
857
|
+
UpdateConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
858
|
+
})(UpdateConfigurationSetTrackingOptionsRequest || (UpdateConfigurationSetTrackingOptionsRequest = {}));
|
|
859
|
+
export var UpdateConfigurationSetTrackingOptionsResponse;
|
|
860
|
+
(function (UpdateConfigurationSetTrackingOptionsResponse) {
|
|
861
|
+
UpdateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
862
|
+
})(UpdateConfigurationSetTrackingOptionsResponse || (UpdateConfigurationSetTrackingOptionsResponse = {}));
|
|
863
|
+
export var UpdateCustomVerificationEmailTemplateRequest;
|
|
864
|
+
(function (UpdateCustomVerificationEmailTemplateRequest) {
|
|
865
|
+
UpdateCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
866
|
+
})(UpdateCustomVerificationEmailTemplateRequest || (UpdateCustomVerificationEmailTemplateRequest = {}));
|
|
867
|
+
export var UpdateReceiptRuleRequest;
|
|
868
|
+
(function (UpdateReceiptRuleRequest) {
|
|
869
|
+
UpdateReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
870
|
+
})(UpdateReceiptRuleRequest || (UpdateReceiptRuleRequest = {}));
|
|
871
|
+
export var UpdateReceiptRuleResponse;
|
|
872
|
+
(function (UpdateReceiptRuleResponse) {
|
|
873
|
+
UpdateReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
874
|
+
})(UpdateReceiptRuleResponse || (UpdateReceiptRuleResponse = {}));
|
|
875
|
+
export var UpdateTemplateRequest;
|
|
876
|
+
(function (UpdateTemplateRequest) {
|
|
877
|
+
UpdateTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
878
|
+
})(UpdateTemplateRequest || (UpdateTemplateRequest = {}));
|
|
879
|
+
export var UpdateTemplateResponse;
|
|
880
|
+
(function (UpdateTemplateResponse) {
|
|
881
|
+
UpdateTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
882
|
+
})(UpdateTemplateResponse || (UpdateTemplateResponse = {}));
|
|
883
|
+
export var VerifyDomainDkimRequest;
|
|
884
|
+
(function (VerifyDomainDkimRequest) {
|
|
885
|
+
VerifyDomainDkimRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
886
|
+
})(VerifyDomainDkimRequest || (VerifyDomainDkimRequest = {}));
|
|
887
|
+
export var VerifyDomainDkimResponse;
|
|
888
|
+
(function (VerifyDomainDkimResponse) {
|
|
889
|
+
VerifyDomainDkimResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
890
|
+
})(VerifyDomainDkimResponse || (VerifyDomainDkimResponse = {}));
|
|
891
|
+
export var VerifyDomainIdentityRequest;
|
|
892
|
+
(function (VerifyDomainIdentityRequest) {
|
|
893
|
+
VerifyDomainIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
894
|
+
})(VerifyDomainIdentityRequest || (VerifyDomainIdentityRequest = {}));
|
|
895
|
+
export var VerifyDomainIdentityResponse;
|
|
896
|
+
(function (VerifyDomainIdentityResponse) {
|
|
897
|
+
VerifyDomainIdentityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
898
|
+
})(VerifyDomainIdentityResponse || (VerifyDomainIdentityResponse = {}));
|
|
899
|
+
export var VerifyEmailAddressRequest;
|
|
900
|
+
(function (VerifyEmailAddressRequest) {
|
|
901
|
+
VerifyEmailAddressRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
902
|
+
})(VerifyEmailAddressRequest || (VerifyEmailAddressRequest = {}));
|
|
903
|
+
export var VerifyEmailIdentityRequest;
|
|
904
|
+
(function (VerifyEmailIdentityRequest) {
|
|
905
|
+
VerifyEmailIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
906
|
+
})(VerifyEmailIdentityRequest || (VerifyEmailIdentityRequest = {}));
|
|
907
|
+
export var VerifyEmailIdentityResponse;
|
|
908
|
+
(function (VerifyEmailIdentityResponse) {
|
|
909
|
+
VerifyEmailIdentityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
910
|
+
})(VerifyEmailIdentityResponse || (VerifyEmailIdentityResponse = {}));
|