@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
|
@@ -1,1526 +0,0 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
2
|
-
export var AccountSendingPausedException;
|
|
3
|
-
(function (AccountSendingPausedException) {
|
|
4
|
-
/**
|
|
5
|
-
* @internal
|
|
6
|
-
*/
|
|
7
|
-
AccountSendingPausedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
8
|
-
})(AccountSendingPausedException || (AccountSendingPausedException = {}));
|
|
9
|
-
export var AddHeaderAction;
|
|
10
|
-
(function (AddHeaderAction) {
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
AddHeaderAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
15
|
-
})(AddHeaderAction || (AddHeaderAction = {}));
|
|
16
|
-
export var AlreadyExistsException;
|
|
17
|
-
(function (AlreadyExistsException) {
|
|
18
|
-
/**
|
|
19
|
-
* @internal
|
|
20
|
-
*/
|
|
21
|
-
AlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
|
-
})(AlreadyExistsException || (AlreadyExistsException = {}));
|
|
23
|
-
export var BehaviorOnMXFailure;
|
|
24
|
-
(function (BehaviorOnMXFailure) {
|
|
25
|
-
BehaviorOnMXFailure["RejectMessage"] = "RejectMessage";
|
|
26
|
-
BehaviorOnMXFailure["UseDefaultValue"] = "UseDefaultValue";
|
|
27
|
-
})(BehaviorOnMXFailure || (BehaviorOnMXFailure = {}));
|
|
28
|
-
export var Content;
|
|
29
|
-
(function (Content) {
|
|
30
|
-
/**
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
33
|
-
Content.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
34
|
-
})(Content || (Content = {}));
|
|
35
|
-
export var Body;
|
|
36
|
-
(function (Body) {
|
|
37
|
-
/**
|
|
38
|
-
* @internal
|
|
39
|
-
*/
|
|
40
|
-
Body.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
|
-
})(Body || (Body = {}));
|
|
42
|
-
export var BounceAction;
|
|
43
|
-
(function (BounceAction) {
|
|
44
|
-
/**
|
|
45
|
-
* @internal
|
|
46
|
-
*/
|
|
47
|
-
BounceAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
48
|
-
})(BounceAction || (BounceAction = {}));
|
|
49
|
-
export var BounceType;
|
|
50
|
-
(function (BounceType) {
|
|
51
|
-
BounceType["ContentRejected"] = "ContentRejected";
|
|
52
|
-
BounceType["DoesNotExist"] = "DoesNotExist";
|
|
53
|
-
BounceType["ExceededQuota"] = "ExceededQuota";
|
|
54
|
-
BounceType["MessageTooLarge"] = "MessageTooLarge";
|
|
55
|
-
BounceType["TemporaryFailure"] = "TemporaryFailure";
|
|
56
|
-
BounceType["Undefined"] = "Undefined";
|
|
57
|
-
})(BounceType || (BounceType = {}));
|
|
58
|
-
export var DsnAction;
|
|
59
|
-
(function (DsnAction) {
|
|
60
|
-
DsnAction["DELAYED"] = "delayed";
|
|
61
|
-
DsnAction["DELIVERED"] = "delivered";
|
|
62
|
-
DsnAction["EXPANDED"] = "expanded";
|
|
63
|
-
DsnAction["FAILED"] = "failed";
|
|
64
|
-
DsnAction["RELAYED"] = "relayed";
|
|
65
|
-
})(DsnAction || (DsnAction = {}));
|
|
66
|
-
export var ExtensionField;
|
|
67
|
-
(function (ExtensionField) {
|
|
68
|
-
/**
|
|
69
|
-
* @internal
|
|
70
|
-
*/
|
|
71
|
-
ExtensionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
72
|
-
})(ExtensionField || (ExtensionField = {}));
|
|
73
|
-
export var RecipientDsnFields;
|
|
74
|
-
(function (RecipientDsnFields) {
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
RecipientDsnFields.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
79
|
-
})(RecipientDsnFields || (RecipientDsnFields = {}));
|
|
80
|
-
export var BouncedRecipientInfo;
|
|
81
|
-
(function (BouncedRecipientInfo) {
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
BouncedRecipientInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
86
|
-
})(BouncedRecipientInfo || (BouncedRecipientInfo = {}));
|
|
87
|
-
export var Destination;
|
|
88
|
-
(function (Destination) {
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
Destination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
|
-
})(Destination || (Destination = {}));
|
|
94
|
-
export var MessageTag;
|
|
95
|
-
(function (MessageTag) {
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
MessageTag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
-
})(MessageTag || (MessageTag = {}));
|
|
101
|
-
export var BulkEmailDestination;
|
|
102
|
-
(function (BulkEmailDestination) {
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
BulkEmailDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
-
})(BulkEmailDestination || (BulkEmailDestination = {}));
|
|
108
|
-
export var BulkEmailStatus;
|
|
109
|
-
(function (BulkEmailStatus) {
|
|
110
|
-
BulkEmailStatus["AccountDailyQuotaExceeded"] = "AccountDailyQuotaExceeded";
|
|
111
|
-
BulkEmailStatus["AccountSendingPaused"] = "AccountSendingPaused";
|
|
112
|
-
BulkEmailStatus["AccountSuspended"] = "AccountSuspended";
|
|
113
|
-
BulkEmailStatus["AccountThrottled"] = "AccountThrottled";
|
|
114
|
-
BulkEmailStatus["ConfigurationSetDoesNotExist"] = "ConfigurationSetDoesNotExist";
|
|
115
|
-
BulkEmailStatus["ConfigurationSetSendingPaused"] = "ConfigurationSetSendingPaused";
|
|
116
|
-
BulkEmailStatus["Failed"] = "Failed";
|
|
117
|
-
BulkEmailStatus["InvalidParameterValue"] = "InvalidParameterValue";
|
|
118
|
-
BulkEmailStatus["InvalidSendingPoolName"] = "InvalidSendingPoolName";
|
|
119
|
-
BulkEmailStatus["MailFromDomainNotVerified"] = "MailFromDomainNotVerified";
|
|
120
|
-
BulkEmailStatus["MessageRejected"] = "MessageRejected";
|
|
121
|
-
BulkEmailStatus["Success"] = "Success";
|
|
122
|
-
BulkEmailStatus["TemplateDoesNotExist"] = "TemplateDoesNotExist";
|
|
123
|
-
BulkEmailStatus["TransientFailure"] = "TransientFailure";
|
|
124
|
-
})(BulkEmailStatus || (BulkEmailStatus = {}));
|
|
125
|
-
export var BulkEmailDestinationStatus;
|
|
126
|
-
(function (BulkEmailDestinationStatus) {
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
BulkEmailDestinationStatus.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
-
})(BulkEmailDestinationStatus || (BulkEmailDestinationStatus = {}));
|
|
132
|
-
export var CannotDeleteException;
|
|
133
|
-
(function (CannotDeleteException) {
|
|
134
|
-
/**
|
|
135
|
-
* @internal
|
|
136
|
-
*/
|
|
137
|
-
CannotDeleteException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
-
})(CannotDeleteException || (CannotDeleteException = {}));
|
|
139
|
-
export var CloneReceiptRuleSetRequest;
|
|
140
|
-
(function (CloneReceiptRuleSetRequest) {
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
CloneReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
-
})(CloneReceiptRuleSetRequest || (CloneReceiptRuleSetRequest = {}));
|
|
146
|
-
export var CloneReceiptRuleSetResponse;
|
|
147
|
-
(function (CloneReceiptRuleSetResponse) {
|
|
148
|
-
/**
|
|
149
|
-
* @internal
|
|
150
|
-
*/
|
|
151
|
-
CloneReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
-
})(CloneReceiptRuleSetResponse || (CloneReceiptRuleSetResponse = {}));
|
|
153
|
-
export var LimitExceededException;
|
|
154
|
-
(function (LimitExceededException) {
|
|
155
|
-
/**
|
|
156
|
-
* @internal
|
|
157
|
-
*/
|
|
158
|
-
LimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
-
})(LimitExceededException || (LimitExceededException = {}));
|
|
160
|
-
export var RuleSetDoesNotExistException;
|
|
161
|
-
(function (RuleSetDoesNotExistException) {
|
|
162
|
-
/**
|
|
163
|
-
* @internal
|
|
164
|
-
*/
|
|
165
|
-
RuleSetDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
-
})(RuleSetDoesNotExistException || (RuleSetDoesNotExistException = {}));
|
|
167
|
-
export var DimensionValueSource;
|
|
168
|
-
(function (DimensionValueSource) {
|
|
169
|
-
DimensionValueSource["EMAIL_HEADER"] = "emailHeader";
|
|
170
|
-
DimensionValueSource["LINK_TAG"] = "linkTag";
|
|
171
|
-
DimensionValueSource["MESSAGE_TAG"] = "messageTag";
|
|
172
|
-
})(DimensionValueSource || (DimensionValueSource = {}));
|
|
173
|
-
export var CloudWatchDimensionConfiguration;
|
|
174
|
-
(function (CloudWatchDimensionConfiguration) {
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
CloudWatchDimensionConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
-
})(CloudWatchDimensionConfiguration || (CloudWatchDimensionConfiguration = {}));
|
|
180
|
-
export var CloudWatchDestination;
|
|
181
|
-
(function (CloudWatchDestination) {
|
|
182
|
-
/**
|
|
183
|
-
* @internal
|
|
184
|
-
*/
|
|
185
|
-
CloudWatchDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
-
})(CloudWatchDestination || (CloudWatchDestination = {}));
|
|
187
|
-
export var ConfigurationSet;
|
|
188
|
-
(function (ConfigurationSet) {
|
|
189
|
-
/**
|
|
190
|
-
* @internal
|
|
191
|
-
*/
|
|
192
|
-
ConfigurationSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
-
})(ConfigurationSet || (ConfigurationSet = {}));
|
|
194
|
-
export var ConfigurationSetAlreadyExistsException;
|
|
195
|
-
(function (ConfigurationSetAlreadyExistsException) {
|
|
196
|
-
/**
|
|
197
|
-
* @internal
|
|
198
|
-
*/
|
|
199
|
-
ConfigurationSetAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
-
})(ConfigurationSetAlreadyExistsException || (ConfigurationSetAlreadyExistsException = {}));
|
|
201
|
-
export var ConfigurationSetAttribute;
|
|
202
|
-
(function (ConfigurationSetAttribute) {
|
|
203
|
-
ConfigurationSetAttribute["DELIVERY_OPTIONS"] = "deliveryOptions";
|
|
204
|
-
ConfigurationSetAttribute["EVENT_DESTINATIONS"] = "eventDestinations";
|
|
205
|
-
ConfigurationSetAttribute["REPUTATION_OPTIONS"] = "reputationOptions";
|
|
206
|
-
ConfigurationSetAttribute["TRACKING_OPTIONS"] = "trackingOptions";
|
|
207
|
-
})(ConfigurationSetAttribute || (ConfigurationSetAttribute = {}));
|
|
208
|
-
export var ConfigurationSetDoesNotExistException;
|
|
209
|
-
(function (ConfigurationSetDoesNotExistException) {
|
|
210
|
-
/**
|
|
211
|
-
* @internal
|
|
212
|
-
*/
|
|
213
|
-
ConfigurationSetDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
-
})(ConfigurationSetDoesNotExistException || (ConfigurationSetDoesNotExistException = {}));
|
|
215
|
-
export var ConfigurationSetSendingPausedException;
|
|
216
|
-
(function (ConfigurationSetSendingPausedException) {
|
|
217
|
-
/**
|
|
218
|
-
* @internal
|
|
219
|
-
*/
|
|
220
|
-
ConfigurationSetSendingPausedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
-
})(ConfigurationSetSendingPausedException || (ConfigurationSetSendingPausedException = {}));
|
|
222
|
-
export var CreateConfigurationSetRequest;
|
|
223
|
-
(function (CreateConfigurationSetRequest) {
|
|
224
|
-
/**
|
|
225
|
-
* @internal
|
|
226
|
-
*/
|
|
227
|
-
CreateConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
-
})(CreateConfigurationSetRequest || (CreateConfigurationSetRequest = {}));
|
|
229
|
-
export var CreateConfigurationSetResponse;
|
|
230
|
-
(function (CreateConfigurationSetResponse) {
|
|
231
|
-
/**
|
|
232
|
-
* @internal
|
|
233
|
-
*/
|
|
234
|
-
CreateConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
-
})(CreateConfigurationSetResponse || (CreateConfigurationSetResponse = {}));
|
|
236
|
-
export var InvalidConfigurationSetException;
|
|
237
|
-
(function (InvalidConfigurationSetException) {
|
|
238
|
-
/**
|
|
239
|
-
* @internal
|
|
240
|
-
*/
|
|
241
|
-
InvalidConfigurationSetException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
-
})(InvalidConfigurationSetException || (InvalidConfigurationSetException = {}));
|
|
243
|
-
export var KinesisFirehoseDestination;
|
|
244
|
-
(function (KinesisFirehoseDestination) {
|
|
245
|
-
/**
|
|
246
|
-
* @internal
|
|
247
|
-
*/
|
|
248
|
-
KinesisFirehoseDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
-
})(KinesisFirehoseDestination || (KinesisFirehoseDestination = {}));
|
|
250
|
-
export var EventType;
|
|
251
|
-
(function (EventType) {
|
|
252
|
-
EventType["BOUNCE"] = "bounce";
|
|
253
|
-
EventType["CLICK"] = "click";
|
|
254
|
-
EventType["COMPLAINT"] = "complaint";
|
|
255
|
-
EventType["DELIVERY"] = "delivery";
|
|
256
|
-
EventType["OPEN"] = "open";
|
|
257
|
-
EventType["REJECT"] = "reject";
|
|
258
|
-
EventType["RENDERING_FAILURE"] = "renderingFailure";
|
|
259
|
-
EventType["SEND"] = "send";
|
|
260
|
-
})(EventType || (EventType = {}));
|
|
261
|
-
export var SNSDestination;
|
|
262
|
-
(function (SNSDestination) {
|
|
263
|
-
/**
|
|
264
|
-
* @internal
|
|
265
|
-
*/
|
|
266
|
-
SNSDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
-
})(SNSDestination || (SNSDestination = {}));
|
|
268
|
-
export var EventDestination;
|
|
269
|
-
(function (EventDestination) {
|
|
270
|
-
/**
|
|
271
|
-
* @internal
|
|
272
|
-
*/
|
|
273
|
-
EventDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
-
})(EventDestination || (EventDestination = {}));
|
|
275
|
-
export var CreateConfigurationSetEventDestinationRequest;
|
|
276
|
-
(function (CreateConfigurationSetEventDestinationRequest) {
|
|
277
|
-
/**
|
|
278
|
-
* @internal
|
|
279
|
-
*/
|
|
280
|
-
CreateConfigurationSetEventDestinationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
-
})(CreateConfigurationSetEventDestinationRequest || (CreateConfigurationSetEventDestinationRequest = {}));
|
|
282
|
-
export var CreateConfigurationSetEventDestinationResponse;
|
|
283
|
-
(function (CreateConfigurationSetEventDestinationResponse) {
|
|
284
|
-
/**
|
|
285
|
-
* @internal
|
|
286
|
-
*/
|
|
287
|
-
CreateConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
-
})(CreateConfigurationSetEventDestinationResponse || (CreateConfigurationSetEventDestinationResponse = {}));
|
|
289
|
-
export var EventDestinationAlreadyExistsException;
|
|
290
|
-
(function (EventDestinationAlreadyExistsException) {
|
|
291
|
-
/**
|
|
292
|
-
* @internal
|
|
293
|
-
*/
|
|
294
|
-
EventDestinationAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
-
})(EventDestinationAlreadyExistsException || (EventDestinationAlreadyExistsException = {}));
|
|
296
|
-
export var InvalidCloudWatchDestinationException;
|
|
297
|
-
(function (InvalidCloudWatchDestinationException) {
|
|
298
|
-
/**
|
|
299
|
-
* @internal
|
|
300
|
-
*/
|
|
301
|
-
InvalidCloudWatchDestinationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
-
})(InvalidCloudWatchDestinationException || (InvalidCloudWatchDestinationException = {}));
|
|
303
|
-
export var InvalidFirehoseDestinationException;
|
|
304
|
-
(function (InvalidFirehoseDestinationException) {
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
InvalidFirehoseDestinationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
-
})(InvalidFirehoseDestinationException || (InvalidFirehoseDestinationException = {}));
|
|
310
|
-
export var InvalidSNSDestinationException;
|
|
311
|
-
(function (InvalidSNSDestinationException) {
|
|
312
|
-
/**
|
|
313
|
-
* @internal
|
|
314
|
-
*/
|
|
315
|
-
InvalidSNSDestinationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
-
})(InvalidSNSDestinationException || (InvalidSNSDestinationException = {}));
|
|
317
|
-
export var TrackingOptions;
|
|
318
|
-
(function (TrackingOptions) {
|
|
319
|
-
/**
|
|
320
|
-
* @internal
|
|
321
|
-
*/
|
|
322
|
-
TrackingOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
-
})(TrackingOptions || (TrackingOptions = {}));
|
|
324
|
-
export var CreateConfigurationSetTrackingOptionsRequest;
|
|
325
|
-
(function (CreateConfigurationSetTrackingOptionsRequest) {
|
|
326
|
-
/**
|
|
327
|
-
* @internal
|
|
328
|
-
*/
|
|
329
|
-
CreateConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
-
})(CreateConfigurationSetTrackingOptionsRequest || (CreateConfigurationSetTrackingOptionsRequest = {}));
|
|
331
|
-
export var CreateConfigurationSetTrackingOptionsResponse;
|
|
332
|
-
(function (CreateConfigurationSetTrackingOptionsResponse) {
|
|
333
|
-
/**
|
|
334
|
-
* @internal
|
|
335
|
-
*/
|
|
336
|
-
CreateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
-
})(CreateConfigurationSetTrackingOptionsResponse || (CreateConfigurationSetTrackingOptionsResponse = {}));
|
|
338
|
-
export var InvalidTrackingOptionsException;
|
|
339
|
-
(function (InvalidTrackingOptionsException) {
|
|
340
|
-
/**
|
|
341
|
-
* @internal
|
|
342
|
-
*/
|
|
343
|
-
InvalidTrackingOptionsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
-
})(InvalidTrackingOptionsException || (InvalidTrackingOptionsException = {}));
|
|
345
|
-
export var TrackingOptionsAlreadyExistsException;
|
|
346
|
-
(function (TrackingOptionsAlreadyExistsException) {
|
|
347
|
-
/**
|
|
348
|
-
* @internal
|
|
349
|
-
*/
|
|
350
|
-
TrackingOptionsAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
-
})(TrackingOptionsAlreadyExistsException || (TrackingOptionsAlreadyExistsException = {}));
|
|
352
|
-
export var CreateCustomVerificationEmailTemplateRequest;
|
|
353
|
-
(function (CreateCustomVerificationEmailTemplateRequest) {
|
|
354
|
-
/**
|
|
355
|
-
* @internal
|
|
356
|
-
*/
|
|
357
|
-
CreateCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
-
})(CreateCustomVerificationEmailTemplateRequest || (CreateCustomVerificationEmailTemplateRequest = {}));
|
|
359
|
-
export var CustomVerificationEmailInvalidContentException;
|
|
360
|
-
(function (CustomVerificationEmailInvalidContentException) {
|
|
361
|
-
/**
|
|
362
|
-
* @internal
|
|
363
|
-
*/
|
|
364
|
-
CustomVerificationEmailInvalidContentException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
-
})(CustomVerificationEmailInvalidContentException || (CustomVerificationEmailInvalidContentException = {}));
|
|
366
|
-
export var CustomVerificationEmailTemplateAlreadyExistsException;
|
|
367
|
-
(function (CustomVerificationEmailTemplateAlreadyExistsException) {
|
|
368
|
-
/**
|
|
369
|
-
* @internal
|
|
370
|
-
*/
|
|
371
|
-
CustomVerificationEmailTemplateAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
372
|
-
})(CustomVerificationEmailTemplateAlreadyExistsException || (CustomVerificationEmailTemplateAlreadyExistsException = {}));
|
|
373
|
-
export var FromEmailAddressNotVerifiedException;
|
|
374
|
-
(function (FromEmailAddressNotVerifiedException) {
|
|
375
|
-
/**
|
|
376
|
-
* @internal
|
|
377
|
-
*/
|
|
378
|
-
FromEmailAddressNotVerifiedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
379
|
-
})(FromEmailAddressNotVerifiedException || (FromEmailAddressNotVerifiedException = {}));
|
|
380
|
-
export var ReceiptFilterPolicy;
|
|
381
|
-
(function (ReceiptFilterPolicy) {
|
|
382
|
-
ReceiptFilterPolicy["Allow"] = "Allow";
|
|
383
|
-
ReceiptFilterPolicy["Block"] = "Block";
|
|
384
|
-
})(ReceiptFilterPolicy || (ReceiptFilterPolicy = {}));
|
|
385
|
-
export var ReceiptIpFilter;
|
|
386
|
-
(function (ReceiptIpFilter) {
|
|
387
|
-
/**
|
|
388
|
-
* @internal
|
|
389
|
-
*/
|
|
390
|
-
ReceiptIpFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
391
|
-
})(ReceiptIpFilter || (ReceiptIpFilter = {}));
|
|
392
|
-
export var ReceiptFilter;
|
|
393
|
-
(function (ReceiptFilter) {
|
|
394
|
-
/**
|
|
395
|
-
* @internal
|
|
396
|
-
*/
|
|
397
|
-
ReceiptFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
398
|
-
})(ReceiptFilter || (ReceiptFilter = {}));
|
|
399
|
-
export var CreateReceiptFilterRequest;
|
|
400
|
-
(function (CreateReceiptFilterRequest) {
|
|
401
|
-
/**
|
|
402
|
-
* @internal
|
|
403
|
-
*/
|
|
404
|
-
CreateReceiptFilterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
405
|
-
})(CreateReceiptFilterRequest || (CreateReceiptFilterRequest = {}));
|
|
406
|
-
export var CreateReceiptFilterResponse;
|
|
407
|
-
(function (CreateReceiptFilterResponse) {
|
|
408
|
-
/**
|
|
409
|
-
* @internal
|
|
410
|
-
*/
|
|
411
|
-
CreateReceiptFilterResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
412
|
-
})(CreateReceiptFilterResponse || (CreateReceiptFilterResponse = {}));
|
|
413
|
-
export var LambdaAction;
|
|
414
|
-
(function (LambdaAction) {
|
|
415
|
-
/**
|
|
416
|
-
* @internal
|
|
417
|
-
*/
|
|
418
|
-
LambdaAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
419
|
-
})(LambdaAction || (LambdaAction = {}));
|
|
420
|
-
export var S3Action;
|
|
421
|
-
(function (S3Action) {
|
|
422
|
-
/**
|
|
423
|
-
* @internal
|
|
424
|
-
*/
|
|
425
|
-
S3Action.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
|
-
})(S3Action || (S3Action = {}));
|
|
427
|
-
export var SNSActionEncoding;
|
|
428
|
-
(function (SNSActionEncoding) {
|
|
429
|
-
SNSActionEncoding["Base64"] = "Base64";
|
|
430
|
-
SNSActionEncoding["UTF8"] = "UTF-8";
|
|
431
|
-
})(SNSActionEncoding || (SNSActionEncoding = {}));
|
|
432
|
-
export var SNSAction;
|
|
433
|
-
(function (SNSAction) {
|
|
434
|
-
/**
|
|
435
|
-
* @internal
|
|
436
|
-
*/
|
|
437
|
-
SNSAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
|
-
})(SNSAction || (SNSAction = {}));
|
|
439
|
-
export var StopScope;
|
|
440
|
-
(function (StopScope) {
|
|
441
|
-
StopScope["RULE_SET"] = "RuleSet";
|
|
442
|
-
})(StopScope || (StopScope = {}));
|
|
443
|
-
export var StopAction;
|
|
444
|
-
(function (StopAction) {
|
|
445
|
-
/**
|
|
446
|
-
* @internal
|
|
447
|
-
*/
|
|
448
|
-
StopAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
449
|
-
})(StopAction || (StopAction = {}));
|
|
450
|
-
export var WorkmailAction;
|
|
451
|
-
(function (WorkmailAction) {
|
|
452
|
-
/**
|
|
453
|
-
* @internal
|
|
454
|
-
*/
|
|
455
|
-
WorkmailAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
456
|
-
})(WorkmailAction || (WorkmailAction = {}));
|
|
457
|
-
export var ReceiptAction;
|
|
458
|
-
(function (ReceiptAction) {
|
|
459
|
-
/**
|
|
460
|
-
* @internal
|
|
461
|
-
*/
|
|
462
|
-
ReceiptAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
463
|
-
})(ReceiptAction || (ReceiptAction = {}));
|
|
464
|
-
export var TlsPolicy;
|
|
465
|
-
(function (TlsPolicy) {
|
|
466
|
-
TlsPolicy["Optional"] = "Optional";
|
|
467
|
-
TlsPolicy["Require"] = "Require";
|
|
468
|
-
})(TlsPolicy || (TlsPolicy = {}));
|
|
469
|
-
export var ReceiptRule;
|
|
470
|
-
(function (ReceiptRule) {
|
|
471
|
-
/**
|
|
472
|
-
* @internal
|
|
473
|
-
*/
|
|
474
|
-
ReceiptRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
475
|
-
})(ReceiptRule || (ReceiptRule = {}));
|
|
476
|
-
export var CreateReceiptRuleRequest;
|
|
477
|
-
(function (CreateReceiptRuleRequest) {
|
|
478
|
-
/**
|
|
479
|
-
* @internal
|
|
480
|
-
*/
|
|
481
|
-
CreateReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
482
|
-
})(CreateReceiptRuleRequest || (CreateReceiptRuleRequest = {}));
|
|
483
|
-
export var CreateReceiptRuleResponse;
|
|
484
|
-
(function (CreateReceiptRuleResponse) {
|
|
485
|
-
/**
|
|
486
|
-
* @internal
|
|
487
|
-
*/
|
|
488
|
-
CreateReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
489
|
-
})(CreateReceiptRuleResponse || (CreateReceiptRuleResponse = {}));
|
|
490
|
-
export var InvalidLambdaFunctionException;
|
|
491
|
-
(function (InvalidLambdaFunctionException) {
|
|
492
|
-
/**
|
|
493
|
-
* @internal
|
|
494
|
-
*/
|
|
495
|
-
InvalidLambdaFunctionException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
496
|
-
})(InvalidLambdaFunctionException || (InvalidLambdaFunctionException = {}));
|
|
497
|
-
export var InvalidS3ConfigurationException;
|
|
498
|
-
(function (InvalidS3ConfigurationException) {
|
|
499
|
-
/**
|
|
500
|
-
* @internal
|
|
501
|
-
*/
|
|
502
|
-
InvalidS3ConfigurationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
503
|
-
})(InvalidS3ConfigurationException || (InvalidS3ConfigurationException = {}));
|
|
504
|
-
export var InvalidSnsTopicException;
|
|
505
|
-
(function (InvalidSnsTopicException) {
|
|
506
|
-
/**
|
|
507
|
-
* @internal
|
|
508
|
-
*/
|
|
509
|
-
InvalidSnsTopicException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
510
|
-
})(InvalidSnsTopicException || (InvalidSnsTopicException = {}));
|
|
511
|
-
export var RuleDoesNotExistException;
|
|
512
|
-
(function (RuleDoesNotExistException) {
|
|
513
|
-
/**
|
|
514
|
-
* @internal
|
|
515
|
-
*/
|
|
516
|
-
RuleDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
517
|
-
})(RuleDoesNotExistException || (RuleDoesNotExistException = {}));
|
|
518
|
-
export var CreateReceiptRuleSetRequest;
|
|
519
|
-
(function (CreateReceiptRuleSetRequest) {
|
|
520
|
-
/**
|
|
521
|
-
* @internal
|
|
522
|
-
*/
|
|
523
|
-
CreateReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
524
|
-
})(CreateReceiptRuleSetRequest || (CreateReceiptRuleSetRequest = {}));
|
|
525
|
-
export var CreateReceiptRuleSetResponse;
|
|
526
|
-
(function (CreateReceiptRuleSetResponse) {
|
|
527
|
-
/**
|
|
528
|
-
* @internal
|
|
529
|
-
*/
|
|
530
|
-
CreateReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
531
|
-
})(CreateReceiptRuleSetResponse || (CreateReceiptRuleSetResponse = {}));
|
|
532
|
-
export var Template;
|
|
533
|
-
(function (Template) {
|
|
534
|
-
/**
|
|
535
|
-
* @internal
|
|
536
|
-
*/
|
|
537
|
-
Template.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
538
|
-
})(Template || (Template = {}));
|
|
539
|
-
export var CreateTemplateRequest;
|
|
540
|
-
(function (CreateTemplateRequest) {
|
|
541
|
-
/**
|
|
542
|
-
* @internal
|
|
543
|
-
*/
|
|
544
|
-
CreateTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
545
|
-
})(CreateTemplateRequest || (CreateTemplateRequest = {}));
|
|
546
|
-
export var CreateTemplateResponse;
|
|
547
|
-
(function (CreateTemplateResponse) {
|
|
548
|
-
/**
|
|
549
|
-
* @internal
|
|
550
|
-
*/
|
|
551
|
-
CreateTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
552
|
-
})(CreateTemplateResponse || (CreateTemplateResponse = {}));
|
|
553
|
-
export var InvalidTemplateException;
|
|
554
|
-
(function (InvalidTemplateException) {
|
|
555
|
-
/**
|
|
556
|
-
* @internal
|
|
557
|
-
*/
|
|
558
|
-
InvalidTemplateException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
559
|
-
})(InvalidTemplateException || (InvalidTemplateException = {}));
|
|
560
|
-
export var CustomMailFromStatus;
|
|
561
|
-
(function (CustomMailFromStatus) {
|
|
562
|
-
CustomMailFromStatus["Failed"] = "Failed";
|
|
563
|
-
CustomMailFromStatus["Pending"] = "Pending";
|
|
564
|
-
CustomMailFromStatus["Success"] = "Success";
|
|
565
|
-
CustomMailFromStatus["TemporaryFailure"] = "TemporaryFailure";
|
|
566
|
-
})(CustomMailFromStatus || (CustomMailFromStatus = {}));
|
|
567
|
-
export var CustomVerificationEmailTemplate;
|
|
568
|
-
(function (CustomVerificationEmailTemplate) {
|
|
569
|
-
/**
|
|
570
|
-
* @internal
|
|
571
|
-
*/
|
|
572
|
-
CustomVerificationEmailTemplate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
573
|
-
})(CustomVerificationEmailTemplate || (CustomVerificationEmailTemplate = {}));
|
|
574
|
-
export var CustomVerificationEmailTemplateDoesNotExistException;
|
|
575
|
-
(function (CustomVerificationEmailTemplateDoesNotExistException) {
|
|
576
|
-
/**
|
|
577
|
-
* @internal
|
|
578
|
-
*/
|
|
579
|
-
CustomVerificationEmailTemplateDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
580
|
-
})(CustomVerificationEmailTemplateDoesNotExistException || (CustomVerificationEmailTemplateDoesNotExistException = {}));
|
|
581
|
-
export var DeleteConfigurationSetRequest;
|
|
582
|
-
(function (DeleteConfigurationSetRequest) {
|
|
583
|
-
/**
|
|
584
|
-
* @internal
|
|
585
|
-
*/
|
|
586
|
-
DeleteConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
587
|
-
})(DeleteConfigurationSetRequest || (DeleteConfigurationSetRequest = {}));
|
|
588
|
-
export var DeleteConfigurationSetResponse;
|
|
589
|
-
(function (DeleteConfigurationSetResponse) {
|
|
590
|
-
/**
|
|
591
|
-
* @internal
|
|
592
|
-
*/
|
|
593
|
-
DeleteConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
594
|
-
})(DeleteConfigurationSetResponse || (DeleteConfigurationSetResponse = {}));
|
|
595
|
-
export var DeleteConfigurationSetEventDestinationRequest;
|
|
596
|
-
(function (DeleteConfigurationSetEventDestinationRequest) {
|
|
597
|
-
/**
|
|
598
|
-
* @internal
|
|
599
|
-
*/
|
|
600
|
-
DeleteConfigurationSetEventDestinationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
601
|
-
})(DeleteConfigurationSetEventDestinationRequest || (DeleteConfigurationSetEventDestinationRequest = {}));
|
|
602
|
-
export var DeleteConfigurationSetEventDestinationResponse;
|
|
603
|
-
(function (DeleteConfigurationSetEventDestinationResponse) {
|
|
604
|
-
/**
|
|
605
|
-
* @internal
|
|
606
|
-
*/
|
|
607
|
-
DeleteConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
608
|
-
})(DeleteConfigurationSetEventDestinationResponse || (DeleteConfigurationSetEventDestinationResponse = {}));
|
|
609
|
-
export var EventDestinationDoesNotExistException;
|
|
610
|
-
(function (EventDestinationDoesNotExistException) {
|
|
611
|
-
/**
|
|
612
|
-
* @internal
|
|
613
|
-
*/
|
|
614
|
-
EventDestinationDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
615
|
-
})(EventDestinationDoesNotExistException || (EventDestinationDoesNotExistException = {}));
|
|
616
|
-
export var DeleteConfigurationSetTrackingOptionsRequest;
|
|
617
|
-
(function (DeleteConfigurationSetTrackingOptionsRequest) {
|
|
618
|
-
/**
|
|
619
|
-
* @internal
|
|
620
|
-
*/
|
|
621
|
-
DeleteConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
622
|
-
})(DeleteConfigurationSetTrackingOptionsRequest || (DeleteConfigurationSetTrackingOptionsRequest = {}));
|
|
623
|
-
export var DeleteConfigurationSetTrackingOptionsResponse;
|
|
624
|
-
(function (DeleteConfigurationSetTrackingOptionsResponse) {
|
|
625
|
-
/**
|
|
626
|
-
* @internal
|
|
627
|
-
*/
|
|
628
|
-
DeleteConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
629
|
-
})(DeleteConfigurationSetTrackingOptionsResponse || (DeleteConfigurationSetTrackingOptionsResponse = {}));
|
|
630
|
-
export var TrackingOptionsDoesNotExistException;
|
|
631
|
-
(function (TrackingOptionsDoesNotExistException) {
|
|
632
|
-
/**
|
|
633
|
-
* @internal
|
|
634
|
-
*/
|
|
635
|
-
TrackingOptionsDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
636
|
-
})(TrackingOptionsDoesNotExistException || (TrackingOptionsDoesNotExistException = {}));
|
|
637
|
-
export var DeleteCustomVerificationEmailTemplateRequest;
|
|
638
|
-
(function (DeleteCustomVerificationEmailTemplateRequest) {
|
|
639
|
-
/**
|
|
640
|
-
* @internal
|
|
641
|
-
*/
|
|
642
|
-
DeleteCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
643
|
-
})(DeleteCustomVerificationEmailTemplateRequest || (DeleteCustomVerificationEmailTemplateRequest = {}));
|
|
644
|
-
export var DeleteIdentityRequest;
|
|
645
|
-
(function (DeleteIdentityRequest) {
|
|
646
|
-
/**
|
|
647
|
-
* @internal
|
|
648
|
-
*/
|
|
649
|
-
DeleteIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
650
|
-
})(DeleteIdentityRequest || (DeleteIdentityRequest = {}));
|
|
651
|
-
export var DeleteIdentityResponse;
|
|
652
|
-
(function (DeleteIdentityResponse) {
|
|
653
|
-
/**
|
|
654
|
-
* @internal
|
|
655
|
-
*/
|
|
656
|
-
DeleteIdentityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
657
|
-
})(DeleteIdentityResponse || (DeleteIdentityResponse = {}));
|
|
658
|
-
export var DeleteIdentityPolicyRequest;
|
|
659
|
-
(function (DeleteIdentityPolicyRequest) {
|
|
660
|
-
/**
|
|
661
|
-
* @internal
|
|
662
|
-
*/
|
|
663
|
-
DeleteIdentityPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
|
-
})(DeleteIdentityPolicyRequest || (DeleteIdentityPolicyRequest = {}));
|
|
665
|
-
export var DeleteIdentityPolicyResponse;
|
|
666
|
-
(function (DeleteIdentityPolicyResponse) {
|
|
667
|
-
/**
|
|
668
|
-
* @internal
|
|
669
|
-
*/
|
|
670
|
-
DeleteIdentityPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
671
|
-
})(DeleteIdentityPolicyResponse || (DeleteIdentityPolicyResponse = {}));
|
|
672
|
-
export var DeleteReceiptFilterRequest;
|
|
673
|
-
(function (DeleteReceiptFilterRequest) {
|
|
674
|
-
/**
|
|
675
|
-
* @internal
|
|
676
|
-
*/
|
|
677
|
-
DeleteReceiptFilterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
|
-
})(DeleteReceiptFilterRequest || (DeleteReceiptFilterRequest = {}));
|
|
679
|
-
export var DeleteReceiptFilterResponse;
|
|
680
|
-
(function (DeleteReceiptFilterResponse) {
|
|
681
|
-
/**
|
|
682
|
-
* @internal
|
|
683
|
-
*/
|
|
684
|
-
DeleteReceiptFilterResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
685
|
-
})(DeleteReceiptFilterResponse || (DeleteReceiptFilterResponse = {}));
|
|
686
|
-
export var DeleteReceiptRuleRequest;
|
|
687
|
-
(function (DeleteReceiptRuleRequest) {
|
|
688
|
-
/**
|
|
689
|
-
* @internal
|
|
690
|
-
*/
|
|
691
|
-
DeleteReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
692
|
-
})(DeleteReceiptRuleRequest || (DeleteReceiptRuleRequest = {}));
|
|
693
|
-
export var DeleteReceiptRuleResponse;
|
|
694
|
-
(function (DeleteReceiptRuleResponse) {
|
|
695
|
-
/**
|
|
696
|
-
* @internal
|
|
697
|
-
*/
|
|
698
|
-
DeleteReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
699
|
-
})(DeleteReceiptRuleResponse || (DeleteReceiptRuleResponse = {}));
|
|
700
|
-
export var DeleteReceiptRuleSetRequest;
|
|
701
|
-
(function (DeleteReceiptRuleSetRequest) {
|
|
702
|
-
/**
|
|
703
|
-
* @internal
|
|
704
|
-
*/
|
|
705
|
-
DeleteReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
706
|
-
})(DeleteReceiptRuleSetRequest || (DeleteReceiptRuleSetRequest = {}));
|
|
707
|
-
export var DeleteReceiptRuleSetResponse;
|
|
708
|
-
(function (DeleteReceiptRuleSetResponse) {
|
|
709
|
-
/**
|
|
710
|
-
* @internal
|
|
711
|
-
*/
|
|
712
|
-
DeleteReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
713
|
-
})(DeleteReceiptRuleSetResponse || (DeleteReceiptRuleSetResponse = {}));
|
|
714
|
-
export var DeleteTemplateRequest;
|
|
715
|
-
(function (DeleteTemplateRequest) {
|
|
716
|
-
/**
|
|
717
|
-
* @internal
|
|
718
|
-
*/
|
|
719
|
-
DeleteTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
720
|
-
})(DeleteTemplateRequest || (DeleteTemplateRequest = {}));
|
|
721
|
-
export var DeleteTemplateResponse;
|
|
722
|
-
(function (DeleteTemplateResponse) {
|
|
723
|
-
/**
|
|
724
|
-
* @internal
|
|
725
|
-
*/
|
|
726
|
-
DeleteTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
727
|
-
})(DeleteTemplateResponse || (DeleteTemplateResponse = {}));
|
|
728
|
-
export var DeleteVerifiedEmailAddressRequest;
|
|
729
|
-
(function (DeleteVerifiedEmailAddressRequest) {
|
|
730
|
-
/**
|
|
731
|
-
* @internal
|
|
732
|
-
*/
|
|
733
|
-
DeleteVerifiedEmailAddressRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
734
|
-
})(DeleteVerifiedEmailAddressRequest || (DeleteVerifiedEmailAddressRequest = {}));
|
|
735
|
-
export var DeliveryOptions;
|
|
736
|
-
(function (DeliveryOptions) {
|
|
737
|
-
/**
|
|
738
|
-
* @internal
|
|
739
|
-
*/
|
|
740
|
-
DeliveryOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
741
|
-
})(DeliveryOptions || (DeliveryOptions = {}));
|
|
742
|
-
export var DescribeActiveReceiptRuleSetRequest;
|
|
743
|
-
(function (DescribeActiveReceiptRuleSetRequest) {
|
|
744
|
-
/**
|
|
745
|
-
* @internal
|
|
746
|
-
*/
|
|
747
|
-
DescribeActiveReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
748
|
-
})(DescribeActiveReceiptRuleSetRequest || (DescribeActiveReceiptRuleSetRequest = {}));
|
|
749
|
-
export var ReceiptRuleSetMetadata;
|
|
750
|
-
(function (ReceiptRuleSetMetadata) {
|
|
751
|
-
/**
|
|
752
|
-
* @internal
|
|
753
|
-
*/
|
|
754
|
-
ReceiptRuleSetMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
755
|
-
})(ReceiptRuleSetMetadata || (ReceiptRuleSetMetadata = {}));
|
|
756
|
-
export var DescribeActiveReceiptRuleSetResponse;
|
|
757
|
-
(function (DescribeActiveReceiptRuleSetResponse) {
|
|
758
|
-
/**
|
|
759
|
-
* @internal
|
|
760
|
-
*/
|
|
761
|
-
DescribeActiveReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
762
|
-
})(DescribeActiveReceiptRuleSetResponse || (DescribeActiveReceiptRuleSetResponse = {}));
|
|
763
|
-
export var DescribeConfigurationSetRequest;
|
|
764
|
-
(function (DescribeConfigurationSetRequest) {
|
|
765
|
-
/**
|
|
766
|
-
* @internal
|
|
767
|
-
*/
|
|
768
|
-
DescribeConfigurationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
769
|
-
})(DescribeConfigurationSetRequest || (DescribeConfigurationSetRequest = {}));
|
|
770
|
-
export var ReputationOptions;
|
|
771
|
-
(function (ReputationOptions) {
|
|
772
|
-
/**
|
|
773
|
-
* @internal
|
|
774
|
-
*/
|
|
775
|
-
ReputationOptions.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
776
|
-
})(ReputationOptions || (ReputationOptions = {}));
|
|
777
|
-
export var DescribeConfigurationSetResponse;
|
|
778
|
-
(function (DescribeConfigurationSetResponse) {
|
|
779
|
-
/**
|
|
780
|
-
* @internal
|
|
781
|
-
*/
|
|
782
|
-
DescribeConfigurationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
783
|
-
})(DescribeConfigurationSetResponse || (DescribeConfigurationSetResponse = {}));
|
|
784
|
-
export var DescribeReceiptRuleRequest;
|
|
785
|
-
(function (DescribeReceiptRuleRequest) {
|
|
786
|
-
/**
|
|
787
|
-
* @internal
|
|
788
|
-
*/
|
|
789
|
-
DescribeReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
790
|
-
})(DescribeReceiptRuleRequest || (DescribeReceiptRuleRequest = {}));
|
|
791
|
-
export var DescribeReceiptRuleResponse;
|
|
792
|
-
(function (DescribeReceiptRuleResponse) {
|
|
793
|
-
/**
|
|
794
|
-
* @internal
|
|
795
|
-
*/
|
|
796
|
-
DescribeReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
797
|
-
})(DescribeReceiptRuleResponse || (DescribeReceiptRuleResponse = {}));
|
|
798
|
-
export var DescribeReceiptRuleSetRequest;
|
|
799
|
-
(function (DescribeReceiptRuleSetRequest) {
|
|
800
|
-
/**
|
|
801
|
-
* @internal
|
|
802
|
-
*/
|
|
803
|
-
DescribeReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
804
|
-
})(DescribeReceiptRuleSetRequest || (DescribeReceiptRuleSetRequest = {}));
|
|
805
|
-
export var DescribeReceiptRuleSetResponse;
|
|
806
|
-
(function (DescribeReceiptRuleSetResponse) {
|
|
807
|
-
/**
|
|
808
|
-
* @internal
|
|
809
|
-
*/
|
|
810
|
-
DescribeReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
811
|
-
})(DescribeReceiptRuleSetResponse || (DescribeReceiptRuleSetResponse = {}));
|
|
812
|
-
export var IdentityDkimAttributes;
|
|
813
|
-
(function (IdentityDkimAttributes) {
|
|
814
|
-
/**
|
|
815
|
-
* @internal
|
|
816
|
-
*/
|
|
817
|
-
IdentityDkimAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
818
|
-
})(IdentityDkimAttributes || (IdentityDkimAttributes = {}));
|
|
819
|
-
export var GetAccountSendingEnabledResponse;
|
|
820
|
-
(function (GetAccountSendingEnabledResponse) {
|
|
821
|
-
/**
|
|
822
|
-
* @internal
|
|
823
|
-
*/
|
|
824
|
-
GetAccountSendingEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
825
|
-
})(GetAccountSendingEnabledResponse || (GetAccountSendingEnabledResponse = {}));
|
|
826
|
-
export var GetCustomVerificationEmailTemplateRequest;
|
|
827
|
-
(function (GetCustomVerificationEmailTemplateRequest) {
|
|
828
|
-
/**
|
|
829
|
-
* @internal
|
|
830
|
-
*/
|
|
831
|
-
GetCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
832
|
-
})(GetCustomVerificationEmailTemplateRequest || (GetCustomVerificationEmailTemplateRequest = {}));
|
|
833
|
-
export var GetCustomVerificationEmailTemplateResponse;
|
|
834
|
-
(function (GetCustomVerificationEmailTemplateResponse) {
|
|
835
|
-
/**
|
|
836
|
-
* @internal
|
|
837
|
-
*/
|
|
838
|
-
GetCustomVerificationEmailTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
839
|
-
})(GetCustomVerificationEmailTemplateResponse || (GetCustomVerificationEmailTemplateResponse = {}));
|
|
840
|
-
export var GetIdentityDkimAttributesRequest;
|
|
841
|
-
(function (GetIdentityDkimAttributesRequest) {
|
|
842
|
-
/**
|
|
843
|
-
* @internal
|
|
844
|
-
*/
|
|
845
|
-
GetIdentityDkimAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
846
|
-
})(GetIdentityDkimAttributesRequest || (GetIdentityDkimAttributesRequest = {}));
|
|
847
|
-
export var GetIdentityDkimAttributesResponse;
|
|
848
|
-
(function (GetIdentityDkimAttributesResponse) {
|
|
849
|
-
/**
|
|
850
|
-
* @internal
|
|
851
|
-
*/
|
|
852
|
-
GetIdentityDkimAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
853
|
-
})(GetIdentityDkimAttributesResponse || (GetIdentityDkimAttributesResponse = {}));
|
|
854
|
-
export var GetIdentityMailFromDomainAttributesRequest;
|
|
855
|
-
(function (GetIdentityMailFromDomainAttributesRequest) {
|
|
856
|
-
/**
|
|
857
|
-
* @internal
|
|
858
|
-
*/
|
|
859
|
-
GetIdentityMailFromDomainAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
860
|
-
})(GetIdentityMailFromDomainAttributesRequest || (GetIdentityMailFromDomainAttributesRequest = {}));
|
|
861
|
-
export var IdentityMailFromDomainAttributes;
|
|
862
|
-
(function (IdentityMailFromDomainAttributes) {
|
|
863
|
-
/**
|
|
864
|
-
* @internal
|
|
865
|
-
*/
|
|
866
|
-
IdentityMailFromDomainAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
867
|
-
})(IdentityMailFromDomainAttributes || (IdentityMailFromDomainAttributes = {}));
|
|
868
|
-
export var GetIdentityMailFromDomainAttributesResponse;
|
|
869
|
-
(function (GetIdentityMailFromDomainAttributesResponse) {
|
|
870
|
-
/**
|
|
871
|
-
* @internal
|
|
872
|
-
*/
|
|
873
|
-
GetIdentityMailFromDomainAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
874
|
-
})(GetIdentityMailFromDomainAttributesResponse || (GetIdentityMailFromDomainAttributesResponse = {}));
|
|
875
|
-
export var GetIdentityNotificationAttributesRequest;
|
|
876
|
-
(function (GetIdentityNotificationAttributesRequest) {
|
|
877
|
-
/**
|
|
878
|
-
* @internal
|
|
879
|
-
*/
|
|
880
|
-
GetIdentityNotificationAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
881
|
-
})(GetIdentityNotificationAttributesRequest || (GetIdentityNotificationAttributesRequest = {}));
|
|
882
|
-
export var IdentityNotificationAttributes;
|
|
883
|
-
(function (IdentityNotificationAttributes) {
|
|
884
|
-
/**
|
|
885
|
-
* @internal
|
|
886
|
-
*/
|
|
887
|
-
IdentityNotificationAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
888
|
-
})(IdentityNotificationAttributes || (IdentityNotificationAttributes = {}));
|
|
889
|
-
export var GetIdentityNotificationAttributesResponse;
|
|
890
|
-
(function (GetIdentityNotificationAttributesResponse) {
|
|
891
|
-
/**
|
|
892
|
-
* @internal
|
|
893
|
-
*/
|
|
894
|
-
GetIdentityNotificationAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
895
|
-
})(GetIdentityNotificationAttributesResponse || (GetIdentityNotificationAttributesResponse = {}));
|
|
896
|
-
export var GetIdentityPoliciesRequest;
|
|
897
|
-
(function (GetIdentityPoliciesRequest) {
|
|
898
|
-
/**
|
|
899
|
-
* @internal
|
|
900
|
-
*/
|
|
901
|
-
GetIdentityPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
902
|
-
})(GetIdentityPoliciesRequest || (GetIdentityPoliciesRequest = {}));
|
|
903
|
-
export var GetIdentityPoliciesResponse;
|
|
904
|
-
(function (GetIdentityPoliciesResponse) {
|
|
905
|
-
/**
|
|
906
|
-
* @internal
|
|
907
|
-
*/
|
|
908
|
-
GetIdentityPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
909
|
-
})(GetIdentityPoliciesResponse || (GetIdentityPoliciesResponse = {}));
|
|
910
|
-
export var GetIdentityVerificationAttributesRequest;
|
|
911
|
-
(function (GetIdentityVerificationAttributesRequest) {
|
|
912
|
-
/**
|
|
913
|
-
* @internal
|
|
914
|
-
*/
|
|
915
|
-
GetIdentityVerificationAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
916
|
-
})(GetIdentityVerificationAttributesRequest || (GetIdentityVerificationAttributesRequest = {}));
|
|
917
|
-
export var IdentityVerificationAttributes;
|
|
918
|
-
(function (IdentityVerificationAttributes) {
|
|
919
|
-
/**
|
|
920
|
-
* @internal
|
|
921
|
-
*/
|
|
922
|
-
IdentityVerificationAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
923
|
-
})(IdentityVerificationAttributes || (IdentityVerificationAttributes = {}));
|
|
924
|
-
export var GetIdentityVerificationAttributesResponse;
|
|
925
|
-
(function (GetIdentityVerificationAttributesResponse) {
|
|
926
|
-
/**
|
|
927
|
-
* @internal
|
|
928
|
-
*/
|
|
929
|
-
GetIdentityVerificationAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
930
|
-
})(GetIdentityVerificationAttributesResponse || (GetIdentityVerificationAttributesResponse = {}));
|
|
931
|
-
export var GetSendQuotaResponse;
|
|
932
|
-
(function (GetSendQuotaResponse) {
|
|
933
|
-
/**
|
|
934
|
-
* @internal
|
|
935
|
-
*/
|
|
936
|
-
GetSendQuotaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
937
|
-
})(GetSendQuotaResponse || (GetSendQuotaResponse = {}));
|
|
938
|
-
export var SendDataPoint;
|
|
939
|
-
(function (SendDataPoint) {
|
|
940
|
-
/**
|
|
941
|
-
* @internal
|
|
942
|
-
*/
|
|
943
|
-
SendDataPoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
944
|
-
})(SendDataPoint || (SendDataPoint = {}));
|
|
945
|
-
export var GetSendStatisticsResponse;
|
|
946
|
-
(function (GetSendStatisticsResponse) {
|
|
947
|
-
/**
|
|
948
|
-
* @internal
|
|
949
|
-
*/
|
|
950
|
-
GetSendStatisticsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
951
|
-
})(GetSendStatisticsResponse || (GetSendStatisticsResponse = {}));
|
|
952
|
-
export var GetTemplateRequest;
|
|
953
|
-
(function (GetTemplateRequest) {
|
|
954
|
-
/**
|
|
955
|
-
* @internal
|
|
956
|
-
*/
|
|
957
|
-
GetTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
958
|
-
})(GetTemplateRequest || (GetTemplateRequest = {}));
|
|
959
|
-
export var GetTemplateResponse;
|
|
960
|
-
(function (GetTemplateResponse) {
|
|
961
|
-
/**
|
|
962
|
-
* @internal
|
|
963
|
-
*/
|
|
964
|
-
GetTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
965
|
-
})(GetTemplateResponse || (GetTemplateResponse = {}));
|
|
966
|
-
export var TemplateDoesNotExistException;
|
|
967
|
-
(function (TemplateDoesNotExistException) {
|
|
968
|
-
/**
|
|
969
|
-
* @internal
|
|
970
|
-
*/
|
|
971
|
-
TemplateDoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
972
|
-
})(TemplateDoesNotExistException || (TemplateDoesNotExistException = {}));
|
|
973
|
-
export var InvalidDeliveryOptionsException;
|
|
974
|
-
(function (InvalidDeliveryOptionsException) {
|
|
975
|
-
/**
|
|
976
|
-
* @internal
|
|
977
|
-
*/
|
|
978
|
-
InvalidDeliveryOptionsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
979
|
-
})(InvalidDeliveryOptionsException || (InvalidDeliveryOptionsException = {}));
|
|
980
|
-
export var InvalidPolicyException;
|
|
981
|
-
(function (InvalidPolicyException) {
|
|
982
|
-
/**
|
|
983
|
-
* @internal
|
|
984
|
-
*/
|
|
985
|
-
InvalidPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
986
|
-
})(InvalidPolicyException || (InvalidPolicyException = {}));
|
|
987
|
-
export var InvalidRenderingParameterException;
|
|
988
|
-
(function (InvalidRenderingParameterException) {
|
|
989
|
-
/**
|
|
990
|
-
* @internal
|
|
991
|
-
*/
|
|
992
|
-
InvalidRenderingParameterException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
993
|
-
})(InvalidRenderingParameterException || (InvalidRenderingParameterException = {}));
|
|
994
|
-
export var ListConfigurationSetsRequest;
|
|
995
|
-
(function (ListConfigurationSetsRequest) {
|
|
996
|
-
/**
|
|
997
|
-
* @internal
|
|
998
|
-
*/
|
|
999
|
-
ListConfigurationSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1000
|
-
})(ListConfigurationSetsRequest || (ListConfigurationSetsRequest = {}));
|
|
1001
|
-
export var ListConfigurationSetsResponse;
|
|
1002
|
-
(function (ListConfigurationSetsResponse) {
|
|
1003
|
-
/**
|
|
1004
|
-
* @internal
|
|
1005
|
-
*/
|
|
1006
|
-
ListConfigurationSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1007
|
-
})(ListConfigurationSetsResponse || (ListConfigurationSetsResponse = {}));
|
|
1008
|
-
export var ListCustomVerificationEmailTemplatesRequest;
|
|
1009
|
-
(function (ListCustomVerificationEmailTemplatesRequest) {
|
|
1010
|
-
/**
|
|
1011
|
-
* @internal
|
|
1012
|
-
*/
|
|
1013
|
-
ListCustomVerificationEmailTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1014
|
-
})(ListCustomVerificationEmailTemplatesRequest || (ListCustomVerificationEmailTemplatesRequest = {}));
|
|
1015
|
-
export var ListCustomVerificationEmailTemplatesResponse;
|
|
1016
|
-
(function (ListCustomVerificationEmailTemplatesResponse) {
|
|
1017
|
-
/**
|
|
1018
|
-
* @internal
|
|
1019
|
-
*/
|
|
1020
|
-
ListCustomVerificationEmailTemplatesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1021
|
-
})(ListCustomVerificationEmailTemplatesResponse || (ListCustomVerificationEmailTemplatesResponse = {}));
|
|
1022
|
-
export var ListIdentitiesRequest;
|
|
1023
|
-
(function (ListIdentitiesRequest) {
|
|
1024
|
-
/**
|
|
1025
|
-
* @internal
|
|
1026
|
-
*/
|
|
1027
|
-
ListIdentitiesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1028
|
-
})(ListIdentitiesRequest || (ListIdentitiesRequest = {}));
|
|
1029
|
-
export var ListIdentitiesResponse;
|
|
1030
|
-
(function (ListIdentitiesResponse) {
|
|
1031
|
-
/**
|
|
1032
|
-
* @internal
|
|
1033
|
-
*/
|
|
1034
|
-
ListIdentitiesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1035
|
-
})(ListIdentitiesResponse || (ListIdentitiesResponse = {}));
|
|
1036
|
-
export var ListIdentityPoliciesRequest;
|
|
1037
|
-
(function (ListIdentityPoliciesRequest) {
|
|
1038
|
-
/**
|
|
1039
|
-
* @internal
|
|
1040
|
-
*/
|
|
1041
|
-
ListIdentityPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1042
|
-
})(ListIdentityPoliciesRequest || (ListIdentityPoliciesRequest = {}));
|
|
1043
|
-
export var ListIdentityPoliciesResponse;
|
|
1044
|
-
(function (ListIdentityPoliciesResponse) {
|
|
1045
|
-
/**
|
|
1046
|
-
* @internal
|
|
1047
|
-
*/
|
|
1048
|
-
ListIdentityPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1049
|
-
})(ListIdentityPoliciesResponse || (ListIdentityPoliciesResponse = {}));
|
|
1050
|
-
export var ListReceiptFiltersRequest;
|
|
1051
|
-
(function (ListReceiptFiltersRequest) {
|
|
1052
|
-
/**
|
|
1053
|
-
* @internal
|
|
1054
|
-
*/
|
|
1055
|
-
ListReceiptFiltersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1056
|
-
})(ListReceiptFiltersRequest || (ListReceiptFiltersRequest = {}));
|
|
1057
|
-
export var ListReceiptFiltersResponse;
|
|
1058
|
-
(function (ListReceiptFiltersResponse) {
|
|
1059
|
-
/**
|
|
1060
|
-
* @internal
|
|
1061
|
-
*/
|
|
1062
|
-
ListReceiptFiltersResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1063
|
-
})(ListReceiptFiltersResponse || (ListReceiptFiltersResponse = {}));
|
|
1064
|
-
export var ListReceiptRuleSetsRequest;
|
|
1065
|
-
(function (ListReceiptRuleSetsRequest) {
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
ListReceiptRuleSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1070
|
-
})(ListReceiptRuleSetsRequest || (ListReceiptRuleSetsRequest = {}));
|
|
1071
|
-
export var ListReceiptRuleSetsResponse;
|
|
1072
|
-
(function (ListReceiptRuleSetsResponse) {
|
|
1073
|
-
/**
|
|
1074
|
-
* @internal
|
|
1075
|
-
*/
|
|
1076
|
-
ListReceiptRuleSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1077
|
-
})(ListReceiptRuleSetsResponse || (ListReceiptRuleSetsResponse = {}));
|
|
1078
|
-
export var ListTemplatesRequest;
|
|
1079
|
-
(function (ListTemplatesRequest) {
|
|
1080
|
-
/**
|
|
1081
|
-
* @internal
|
|
1082
|
-
*/
|
|
1083
|
-
ListTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1084
|
-
})(ListTemplatesRequest || (ListTemplatesRequest = {}));
|
|
1085
|
-
export var TemplateMetadata;
|
|
1086
|
-
(function (TemplateMetadata) {
|
|
1087
|
-
/**
|
|
1088
|
-
* @internal
|
|
1089
|
-
*/
|
|
1090
|
-
TemplateMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1091
|
-
})(TemplateMetadata || (TemplateMetadata = {}));
|
|
1092
|
-
export var ListTemplatesResponse;
|
|
1093
|
-
(function (ListTemplatesResponse) {
|
|
1094
|
-
/**
|
|
1095
|
-
* @internal
|
|
1096
|
-
*/
|
|
1097
|
-
ListTemplatesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1098
|
-
})(ListTemplatesResponse || (ListTemplatesResponse = {}));
|
|
1099
|
-
export var ListVerifiedEmailAddressesResponse;
|
|
1100
|
-
(function (ListVerifiedEmailAddressesResponse) {
|
|
1101
|
-
/**
|
|
1102
|
-
* @internal
|
|
1103
|
-
*/
|
|
1104
|
-
ListVerifiedEmailAddressesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1105
|
-
})(ListVerifiedEmailAddressesResponse || (ListVerifiedEmailAddressesResponse = {}));
|
|
1106
|
-
export var MailFromDomainNotVerifiedException;
|
|
1107
|
-
(function (MailFromDomainNotVerifiedException) {
|
|
1108
|
-
/**
|
|
1109
|
-
* @internal
|
|
1110
|
-
*/
|
|
1111
|
-
MailFromDomainNotVerifiedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1112
|
-
})(MailFromDomainNotVerifiedException || (MailFromDomainNotVerifiedException = {}));
|
|
1113
|
-
export var Message;
|
|
1114
|
-
(function (Message) {
|
|
1115
|
-
/**
|
|
1116
|
-
* @internal
|
|
1117
|
-
*/
|
|
1118
|
-
Message.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1119
|
-
})(Message || (Message = {}));
|
|
1120
|
-
export var MessageDsn;
|
|
1121
|
-
(function (MessageDsn) {
|
|
1122
|
-
/**
|
|
1123
|
-
* @internal
|
|
1124
|
-
*/
|
|
1125
|
-
MessageDsn.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1126
|
-
})(MessageDsn || (MessageDsn = {}));
|
|
1127
|
-
export var MessageRejected;
|
|
1128
|
-
(function (MessageRejected) {
|
|
1129
|
-
/**
|
|
1130
|
-
* @internal
|
|
1131
|
-
*/
|
|
1132
|
-
MessageRejected.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1133
|
-
})(MessageRejected || (MessageRejected = {}));
|
|
1134
|
-
export var MissingRenderingAttributeException;
|
|
1135
|
-
(function (MissingRenderingAttributeException) {
|
|
1136
|
-
/**
|
|
1137
|
-
* @internal
|
|
1138
|
-
*/
|
|
1139
|
-
MissingRenderingAttributeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1140
|
-
})(MissingRenderingAttributeException || (MissingRenderingAttributeException = {}));
|
|
1141
|
-
export var ProductionAccessNotGrantedException;
|
|
1142
|
-
(function (ProductionAccessNotGrantedException) {
|
|
1143
|
-
/**
|
|
1144
|
-
* @internal
|
|
1145
|
-
*/
|
|
1146
|
-
ProductionAccessNotGrantedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1147
|
-
})(ProductionAccessNotGrantedException || (ProductionAccessNotGrantedException = {}));
|
|
1148
|
-
export var PutConfigurationSetDeliveryOptionsRequest;
|
|
1149
|
-
(function (PutConfigurationSetDeliveryOptionsRequest) {
|
|
1150
|
-
/**
|
|
1151
|
-
* @internal
|
|
1152
|
-
*/
|
|
1153
|
-
PutConfigurationSetDeliveryOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1154
|
-
})(PutConfigurationSetDeliveryOptionsRequest || (PutConfigurationSetDeliveryOptionsRequest = {}));
|
|
1155
|
-
export var PutConfigurationSetDeliveryOptionsResponse;
|
|
1156
|
-
(function (PutConfigurationSetDeliveryOptionsResponse) {
|
|
1157
|
-
/**
|
|
1158
|
-
* @internal
|
|
1159
|
-
*/
|
|
1160
|
-
PutConfigurationSetDeliveryOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1161
|
-
})(PutConfigurationSetDeliveryOptionsResponse || (PutConfigurationSetDeliveryOptionsResponse = {}));
|
|
1162
|
-
export var PutIdentityPolicyRequest;
|
|
1163
|
-
(function (PutIdentityPolicyRequest) {
|
|
1164
|
-
/**
|
|
1165
|
-
* @internal
|
|
1166
|
-
*/
|
|
1167
|
-
PutIdentityPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1168
|
-
})(PutIdentityPolicyRequest || (PutIdentityPolicyRequest = {}));
|
|
1169
|
-
export var PutIdentityPolicyResponse;
|
|
1170
|
-
(function (PutIdentityPolicyResponse) {
|
|
1171
|
-
/**
|
|
1172
|
-
* @internal
|
|
1173
|
-
*/
|
|
1174
|
-
PutIdentityPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1175
|
-
})(PutIdentityPolicyResponse || (PutIdentityPolicyResponse = {}));
|
|
1176
|
-
export var RawMessage;
|
|
1177
|
-
(function (RawMessage) {
|
|
1178
|
-
/**
|
|
1179
|
-
* @internal
|
|
1180
|
-
*/
|
|
1181
|
-
RawMessage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1182
|
-
})(RawMessage || (RawMessage = {}));
|
|
1183
|
-
export var ReorderReceiptRuleSetRequest;
|
|
1184
|
-
(function (ReorderReceiptRuleSetRequest) {
|
|
1185
|
-
/**
|
|
1186
|
-
* @internal
|
|
1187
|
-
*/
|
|
1188
|
-
ReorderReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1189
|
-
})(ReorderReceiptRuleSetRequest || (ReorderReceiptRuleSetRequest = {}));
|
|
1190
|
-
export var ReorderReceiptRuleSetResponse;
|
|
1191
|
-
(function (ReorderReceiptRuleSetResponse) {
|
|
1192
|
-
/**
|
|
1193
|
-
* @internal
|
|
1194
|
-
*/
|
|
1195
|
-
ReorderReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1196
|
-
})(ReorderReceiptRuleSetResponse || (ReorderReceiptRuleSetResponse = {}));
|
|
1197
|
-
export var SendBounceRequest;
|
|
1198
|
-
(function (SendBounceRequest) {
|
|
1199
|
-
/**
|
|
1200
|
-
* @internal
|
|
1201
|
-
*/
|
|
1202
|
-
SendBounceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1203
|
-
})(SendBounceRequest || (SendBounceRequest = {}));
|
|
1204
|
-
export var SendBounceResponse;
|
|
1205
|
-
(function (SendBounceResponse) {
|
|
1206
|
-
/**
|
|
1207
|
-
* @internal
|
|
1208
|
-
*/
|
|
1209
|
-
SendBounceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1210
|
-
})(SendBounceResponse || (SendBounceResponse = {}));
|
|
1211
|
-
export var SendBulkTemplatedEmailRequest;
|
|
1212
|
-
(function (SendBulkTemplatedEmailRequest) {
|
|
1213
|
-
/**
|
|
1214
|
-
* @internal
|
|
1215
|
-
*/
|
|
1216
|
-
SendBulkTemplatedEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1217
|
-
})(SendBulkTemplatedEmailRequest || (SendBulkTemplatedEmailRequest = {}));
|
|
1218
|
-
export var SendBulkTemplatedEmailResponse;
|
|
1219
|
-
(function (SendBulkTemplatedEmailResponse) {
|
|
1220
|
-
/**
|
|
1221
|
-
* @internal
|
|
1222
|
-
*/
|
|
1223
|
-
SendBulkTemplatedEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1224
|
-
})(SendBulkTemplatedEmailResponse || (SendBulkTemplatedEmailResponse = {}));
|
|
1225
|
-
export var SendCustomVerificationEmailRequest;
|
|
1226
|
-
(function (SendCustomVerificationEmailRequest) {
|
|
1227
|
-
/**
|
|
1228
|
-
* @internal
|
|
1229
|
-
*/
|
|
1230
|
-
SendCustomVerificationEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1231
|
-
})(SendCustomVerificationEmailRequest || (SendCustomVerificationEmailRequest = {}));
|
|
1232
|
-
export var SendCustomVerificationEmailResponse;
|
|
1233
|
-
(function (SendCustomVerificationEmailResponse) {
|
|
1234
|
-
/**
|
|
1235
|
-
* @internal
|
|
1236
|
-
*/
|
|
1237
|
-
SendCustomVerificationEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1238
|
-
})(SendCustomVerificationEmailResponse || (SendCustomVerificationEmailResponse = {}));
|
|
1239
|
-
export var SendEmailRequest;
|
|
1240
|
-
(function (SendEmailRequest) {
|
|
1241
|
-
/**
|
|
1242
|
-
* @internal
|
|
1243
|
-
*/
|
|
1244
|
-
SendEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1245
|
-
})(SendEmailRequest || (SendEmailRequest = {}));
|
|
1246
|
-
export var SendEmailResponse;
|
|
1247
|
-
(function (SendEmailResponse) {
|
|
1248
|
-
/**
|
|
1249
|
-
* @internal
|
|
1250
|
-
*/
|
|
1251
|
-
SendEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1252
|
-
})(SendEmailResponse || (SendEmailResponse = {}));
|
|
1253
|
-
export var SendRawEmailRequest;
|
|
1254
|
-
(function (SendRawEmailRequest) {
|
|
1255
|
-
/**
|
|
1256
|
-
* @internal
|
|
1257
|
-
*/
|
|
1258
|
-
SendRawEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1259
|
-
})(SendRawEmailRequest || (SendRawEmailRequest = {}));
|
|
1260
|
-
export var SendRawEmailResponse;
|
|
1261
|
-
(function (SendRawEmailResponse) {
|
|
1262
|
-
/**
|
|
1263
|
-
* @internal
|
|
1264
|
-
*/
|
|
1265
|
-
SendRawEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1266
|
-
})(SendRawEmailResponse || (SendRawEmailResponse = {}));
|
|
1267
|
-
export var SendTemplatedEmailRequest;
|
|
1268
|
-
(function (SendTemplatedEmailRequest) {
|
|
1269
|
-
/**
|
|
1270
|
-
* @internal
|
|
1271
|
-
*/
|
|
1272
|
-
SendTemplatedEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1273
|
-
})(SendTemplatedEmailRequest || (SendTemplatedEmailRequest = {}));
|
|
1274
|
-
export var SendTemplatedEmailResponse;
|
|
1275
|
-
(function (SendTemplatedEmailResponse) {
|
|
1276
|
-
/**
|
|
1277
|
-
* @internal
|
|
1278
|
-
*/
|
|
1279
|
-
SendTemplatedEmailResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1280
|
-
})(SendTemplatedEmailResponse || (SendTemplatedEmailResponse = {}));
|
|
1281
|
-
export var SetActiveReceiptRuleSetRequest;
|
|
1282
|
-
(function (SetActiveReceiptRuleSetRequest) {
|
|
1283
|
-
/**
|
|
1284
|
-
* @internal
|
|
1285
|
-
*/
|
|
1286
|
-
SetActiveReceiptRuleSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1287
|
-
})(SetActiveReceiptRuleSetRequest || (SetActiveReceiptRuleSetRequest = {}));
|
|
1288
|
-
export var SetActiveReceiptRuleSetResponse;
|
|
1289
|
-
(function (SetActiveReceiptRuleSetResponse) {
|
|
1290
|
-
/**
|
|
1291
|
-
* @internal
|
|
1292
|
-
*/
|
|
1293
|
-
SetActiveReceiptRuleSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1294
|
-
})(SetActiveReceiptRuleSetResponse || (SetActiveReceiptRuleSetResponse = {}));
|
|
1295
|
-
export var SetIdentityDkimEnabledRequest;
|
|
1296
|
-
(function (SetIdentityDkimEnabledRequest) {
|
|
1297
|
-
/**
|
|
1298
|
-
* @internal
|
|
1299
|
-
*/
|
|
1300
|
-
SetIdentityDkimEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1301
|
-
})(SetIdentityDkimEnabledRequest || (SetIdentityDkimEnabledRequest = {}));
|
|
1302
|
-
export var SetIdentityDkimEnabledResponse;
|
|
1303
|
-
(function (SetIdentityDkimEnabledResponse) {
|
|
1304
|
-
/**
|
|
1305
|
-
* @internal
|
|
1306
|
-
*/
|
|
1307
|
-
SetIdentityDkimEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1308
|
-
})(SetIdentityDkimEnabledResponse || (SetIdentityDkimEnabledResponse = {}));
|
|
1309
|
-
export var SetIdentityFeedbackForwardingEnabledRequest;
|
|
1310
|
-
(function (SetIdentityFeedbackForwardingEnabledRequest) {
|
|
1311
|
-
/**
|
|
1312
|
-
* @internal
|
|
1313
|
-
*/
|
|
1314
|
-
SetIdentityFeedbackForwardingEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1315
|
-
})(SetIdentityFeedbackForwardingEnabledRequest || (SetIdentityFeedbackForwardingEnabledRequest = {}));
|
|
1316
|
-
export var SetIdentityFeedbackForwardingEnabledResponse;
|
|
1317
|
-
(function (SetIdentityFeedbackForwardingEnabledResponse) {
|
|
1318
|
-
/**
|
|
1319
|
-
* @internal
|
|
1320
|
-
*/
|
|
1321
|
-
SetIdentityFeedbackForwardingEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1322
|
-
})(SetIdentityFeedbackForwardingEnabledResponse || (SetIdentityFeedbackForwardingEnabledResponse = {}));
|
|
1323
|
-
export var SetIdentityHeadersInNotificationsEnabledRequest;
|
|
1324
|
-
(function (SetIdentityHeadersInNotificationsEnabledRequest) {
|
|
1325
|
-
/**
|
|
1326
|
-
* @internal
|
|
1327
|
-
*/
|
|
1328
|
-
SetIdentityHeadersInNotificationsEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1329
|
-
})(SetIdentityHeadersInNotificationsEnabledRequest || (SetIdentityHeadersInNotificationsEnabledRequest = {}));
|
|
1330
|
-
export var SetIdentityHeadersInNotificationsEnabledResponse;
|
|
1331
|
-
(function (SetIdentityHeadersInNotificationsEnabledResponse) {
|
|
1332
|
-
/**
|
|
1333
|
-
* @internal
|
|
1334
|
-
*/
|
|
1335
|
-
SetIdentityHeadersInNotificationsEnabledResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1336
|
-
})(SetIdentityHeadersInNotificationsEnabledResponse || (SetIdentityHeadersInNotificationsEnabledResponse = {}));
|
|
1337
|
-
export var SetIdentityMailFromDomainRequest;
|
|
1338
|
-
(function (SetIdentityMailFromDomainRequest) {
|
|
1339
|
-
/**
|
|
1340
|
-
* @internal
|
|
1341
|
-
*/
|
|
1342
|
-
SetIdentityMailFromDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1343
|
-
})(SetIdentityMailFromDomainRequest || (SetIdentityMailFromDomainRequest = {}));
|
|
1344
|
-
export var SetIdentityMailFromDomainResponse;
|
|
1345
|
-
(function (SetIdentityMailFromDomainResponse) {
|
|
1346
|
-
/**
|
|
1347
|
-
* @internal
|
|
1348
|
-
*/
|
|
1349
|
-
SetIdentityMailFromDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1350
|
-
})(SetIdentityMailFromDomainResponse || (SetIdentityMailFromDomainResponse = {}));
|
|
1351
|
-
export var SetIdentityNotificationTopicRequest;
|
|
1352
|
-
(function (SetIdentityNotificationTopicRequest) {
|
|
1353
|
-
/**
|
|
1354
|
-
* @internal
|
|
1355
|
-
*/
|
|
1356
|
-
SetIdentityNotificationTopicRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1357
|
-
})(SetIdentityNotificationTopicRequest || (SetIdentityNotificationTopicRequest = {}));
|
|
1358
|
-
export var SetIdentityNotificationTopicResponse;
|
|
1359
|
-
(function (SetIdentityNotificationTopicResponse) {
|
|
1360
|
-
/**
|
|
1361
|
-
* @internal
|
|
1362
|
-
*/
|
|
1363
|
-
SetIdentityNotificationTopicResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1364
|
-
})(SetIdentityNotificationTopicResponse || (SetIdentityNotificationTopicResponse = {}));
|
|
1365
|
-
export var SetReceiptRulePositionRequest;
|
|
1366
|
-
(function (SetReceiptRulePositionRequest) {
|
|
1367
|
-
/**
|
|
1368
|
-
* @internal
|
|
1369
|
-
*/
|
|
1370
|
-
SetReceiptRulePositionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1371
|
-
})(SetReceiptRulePositionRequest || (SetReceiptRulePositionRequest = {}));
|
|
1372
|
-
export var SetReceiptRulePositionResponse;
|
|
1373
|
-
(function (SetReceiptRulePositionResponse) {
|
|
1374
|
-
/**
|
|
1375
|
-
* @internal
|
|
1376
|
-
*/
|
|
1377
|
-
SetReceiptRulePositionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1378
|
-
})(SetReceiptRulePositionResponse || (SetReceiptRulePositionResponse = {}));
|
|
1379
|
-
export var TestRenderTemplateRequest;
|
|
1380
|
-
(function (TestRenderTemplateRequest) {
|
|
1381
|
-
/**
|
|
1382
|
-
* @internal
|
|
1383
|
-
*/
|
|
1384
|
-
TestRenderTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1385
|
-
})(TestRenderTemplateRequest || (TestRenderTemplateRequest = {}));
|
|
1386
|
-
export var TestRenderTemplateResponse;
|
|
1387
|
-
(function (TestRenderTemplateResponse) {
|
|
1388
|
-
/**
|
|
1389
|
-
* @internal
|
|
1390
|
-
*/
|
|
1391
|
-
TestRenderTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1392
|
-
})(TestRenderTemplateResponse || (TestRenderTemplateResponse = {}));
|
|
1393
|
-
export var UpdateAccountSendingEnabledRequest;
|
|
1394
|
-
(function (UpdateAccountSendingEnabledRequest) {
|
|
1395
|
-
/**
|
|
1396
|
-
* @internal
|
|
1397
|
-
*/
|
|
1398
|
-
UpdateAccountSendingEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1399
|
-
})(UpdateAccountSendingEnabledRequest || (UpdateAccountSendingEnabledRequest = {}));
|
|
1400
|
-
export var UpdateConfigurationSetEventDestinationRequest;
|
|
1401
|
-
(function (UpdateConfigurationSetEventDestinationRequest) {
|
|
1402
|
-
/**
|
|
1403
|
-
* @internal
|
|
1404
|
-
*/
|
|
1405
|
-
UpdateConfigurationSetEventDestinationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1406
|
-
})(UpdateConfigurationSetEventDestinationRequest || (UpdateConfigurationSetEventDestinationRequest = {}));
|
|
1407
|
-
export var UpdateConfigurationSetEventDestinationResponse;
|
|
1408
|
-
(function (UpdateConfigurationSetEventDestinationResponse) {
|
|
1409
|
-
/**
|
|
1410
|
-
* @internal
|
|
1411
|
-
*/
|
|
1412
|
-
UpdateConfigurationSetEventDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1413
|
-
})(UpdateConfigurationSetEventDestinationResponse || (UpdateConfigurationSetEventDestinationResponse = {}));
|
|
1414
|
-
export var UpdateConfigurationSetReputationMetricsEnabledRequest;
|
|
1415
|
-
(function (UpdateConfigurationSetReputationMetricsEnabledRequest) {
|
|
1416
|
-
/**
|
|
1417
|
-
* @internal
|
|
1418
|
-
*/
|
|
1419
|
-
UpdateConfigurationSetReputationMetricsEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1420
|
-
})(UpdateConfigurationSetReputationMetricsEnabledRequest || (UpdateConfigurationSetReputationMetricsEnabledRequest = {}));
|
|
1421
|
-
export var UpdateConfigurationSetSendingEnabledRequest;
|
|
1422
|
-
(function (UpdateConfigurationSetSendingEnabledRequest) {
|
|
1423
|
-
/**
|
|
1424
|
-
* @internal
|
|
1425
|
-
*/
|
|
1426
|
-
UpdateConfigurationSetSendingEnabledRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1427
|
-
})(UpdateConfigurationSetSendingEnabledRequest || (UpdateConfigurationSetSendingEnabledRequest = {}));
|
|
1428
|
-
export var UpdateConfigurationSetTrackingOptionsRequest;
|
|
1429
|
-
(function (UpdateConfigurationSetTrackingOptionsRequest) {
|
|
1430
|
-
/**
|
|
1431
|
-
* @internal
|
|
1432
|
-
*/
|
|
1433
|
-
UpdateConfigurationSetTrackingOptionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1434
|
-
})(UpdateConfigurationSetTrackingOptionsRequest || (UpdateConfigurationSetTrackingOptionsRequest = {}));
|
|
1435
|
-
export var UpdateConfigurationSetTrackingOptionsResponse;
|
|
1436
|
-
(function (UpdateConfigurationSetTrackingOptionsResponse) {
|
|
1437
|
-
/**
|
|
1438
|
-
* @internal
|
|
1439
|
-
*/
|
|
1440
|
-
UpdateConfigurationSetTrackingOptionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1441
|
-
})(UpdateConfigurationSetTrackingOptionsResponse || (UpdateConfigurationSetTrackingOptionsResponse = {}));
|
|
1442
|
-
export var UpdateCustomVerificationEmailTemplateRequest;
|
|
1443
|
-
(function (UpdateCustomVerificationEmailTemplateRequest) {
|
|
1444
|
-
/**
|
|
1445
|
-
* @internal
|
|
1446
|
-
*/
|
|
1447
|
-
UpdateCustomVerificationEmailTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1448
|
-
})(UpdateCustomVerificationEmailTemplateRequest || (UpdateCustomVerificationEmailTemplateRequest = {}));
|
|
1449
|
-
export var UpdateReceiptRuleRequest;
|
|
1450
|
-
(function (UpdateReceiptRuleRequest) {
|
|
1451
|
-
/**
|
|
1452
|
-
* @internal
|
|
1453
|
-
*/
|
|
1454
|
-
UpdateReceiptRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1455
|
-
})(UpdateReceiptRuleRequest || (UpdateReceiptRuleRequest = {}));
|
|
1456
|
-
export var UpdateReceiptRuleResponse;
|
|
1457
|
-
(function (UpdateReceiptRuleResponse) {
|
|
1458
|
-
/**
|
|
1459
|
-
* @internal
|
|
1460
|
-
*/
|
|
1461
|
-
UpdateReceiptRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1462
|
-
})(UpdateReceiptRuleResponse || (UpdateReceiptRuleResponse = {}));
|
|
1463
|
-
export var UpdateTemplateRequest;
|
|
1464
|
-
(function (UpdateTemplateRequest) {
|
|
1465
|
-
/**
|
|
1466
|
-
* @internal
|
|
1467
|
-
*/
|
|
1468
|
-
UpdateTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1469
|
-
})(UpdateTemplateRequest || (UpdateTemplateRequest = {}));
|
|
1470
|
-
export var UpdateTemplateResponse;
|
|
1471
|
-
(function (UpdateTemplateResponse) {
|
|
1472
|
-
/**
|
|
1473
|
-
* @internal
|
|
1474
|
-
*/
|
|
1475
|
-
UpdateTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1476
|
-
})(UpdateTemplateResponse || (UpdateTemplateResponse = {}));
|
|
1477
|
-
export var VerifyDomainDkimRequest;
|
|
1478
|
-
(function (VerifyDomainDkimRequest) {
|
|
1479
|
-
/**
|
|
1480
|
-
* @internal
|
|
1481
|
-
*/
|
|
1482
|
-
VerifyDomainDkimRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1483
|
-
})(VerifyDomainDkimRequest || (VerifyDomainDkimRequest = {}));
|
|
1484
|
-
export var VerifyDomainDkimResponse;
|
|
1485
|
-
(function (VerifyDomainDkimResponse) {
|
|
1486
|
-
/**
|
|
1487
|
-
* @internal
|
|
1488
|
-
*/
|
|
1489
|
-
VerifyDomainDkimResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1490
|
-
})(VerifyDomainDkimResponse || (VerifyDomainDkimResponse = {}));
|
|
1491
|
-
export var VerifyDomainIdentityRequest;
|
|
1492
|
-
(function (VerifyDomainIdentityRequest) {
|
|
1493
|
-
/**
|
|
1494
|
-
* @internal
|
|
1495
|
-
*/
|
|
1496
|
-
VerifyDomainIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1497
|
-
})(VerifyDomainIdentityRequest || (VerifyDomainIdentityRequest = {}));
|
|
1498
|
-
export var VerifyDomainIdentityResponse;
|
|
1499
|
-
(function (VerifyDomainIdentityResponse) {
|
|
1500
|
-
/**
|
|
1501
|
-
* @internal
|
|
1502
|
-
*/
|
|
1503
|
-
VerifyDomainIdentityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1504
|
-
})(VerifyDomainIdentityResponse || (VerifyDomainIdentityResponse = {}));
|
|
1505
|
-
export var VerifyEmailAddressRequest;
|
|
1506
|
-
(function (VerifyEmailAddressRequest) {
|
|
1507
|
-
/**
|
|
1508
|
-
* @internal
|
|
1509
|
-
*/
|
|
1510
|
-
VerifyEmailAddressRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1511
|
-
})(VerifyEmailAddressRequest || (VerifyEmailAddressRequest = {}));
|
|
1512
|
-
export var VerifyEmailIdentityRequest;
|
|
1513
|
-
(function (VerifyEmailIdentityRequest) {
|
|
1514
|
-
/**
|
|
1515
|
-
* @internal
|
|
1516
|
-
*/
|
|
1517
|
-
VerifyEmailIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1518
|
-
})(VerifyEmailIdentityRequest || (VerifyEmailIdentityRequest = {}));
|
|
1519
|
-
export var VerifyEmailIdentityResponse;
|
|
1520
|
-
(function (VerifyEmailIdentityResponse) {
|
|
1521
|
-
/**
|
|
1522
|
-
* @internal
|
|
1523
|
-
*/
|
|
1524
|
-
VerifyEmailIdentityResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1525
|
-
})(VerifyEmailIdentityResponse || (VerifyEmailIdentityResponse = {}));
|
|
1526
|
-
//# sourceMappingURL=models_0.js.map
|