@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,39 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { UpdateConfigurationSetTrackingOptionsRequest, UpdateConfigurationSetTrackingOptionsResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateConfigurationSetTrackingOptionsCommandInput extends UpdateConfigurationSetTrackingOptionsRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateConfigurationSetTrackingOptionsCommandOutput extends UpdateConfigurationSetTrackingOptionsResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Modifies an association between a configuration set and a custom domain for open and
|
|
11
|
-
* click event tracking. </p>
|
|
12
|
-
* <p>By default, images and links used for tracking open and click events are hosted on
|
|
13
|
-
* domains operated by Amazon SES. You can configure a subdomain of your own to handle these
|
|
14
|
-
* events. For information about using custom domains, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html">Amazon SES Developer Guide</a>.</p>
|
|
15
|
-
* @example
|
|
16
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
-
* ```javascript
|
|
18
|
-
* import { SESClient, UpdateConfigurationSetTrackingOptionsCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
19
|
-
* // const { SESClient, UpdateConfigurationSetTrackingOptionsCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
20
|
-
* const client = new SESClient(config);
|
|
21
|
-
* const command = new UpdateConfigurationSetTrackingOptionsCommand(input);
|
|
22
|
-
* const response = await client.send(command);
|
|
23
|
-
* ```
|
|
24
|
-
*
|
|
25
|
-
* @see {@link UpdateConfigurationSetTrackingOptionsCommandInput} for command's `input` shape.
|
|
26
|
-
* @see {@link UpdateConfigurationSetTrackingOptionsCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
28
|
-
*
|
|
29
|
-
*/
|
|
30
|
-
export declare class UpdateConfigurationSetTrackingOptionsCommand extends $Command<UpdateConfigurationSetTrackingOptionsCommandInput, UpdateConfigurationSetTrackingOptionsCommandOutput, SESClientResolvedConfig> {
|
|
31
|
-
readonly input: UpdateConfigurationSetTrackingOptionsCommandInput;
|
|
32
|
-
constructor(input: UpdateConfigurationSetTrackingOptionsCommandInput);
|
|
33
|
-
/**
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
36
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConfigurationSetTrackingOptionsCommandInput, UpdateConfigurationSetTrackingOptionsCommandOutput>;
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { UpdateCustomVerificationEmailTemplateRequest } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateCustomVerificationEmailTemplateCommandInput extends UpdateCustomVerificationEmailTemplateRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateCustomVerificationEmailTemplateCommandOutput extends __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Updates an existing custom verification email template.</p>
|
|
11
|
-
* <p>For more information about custom verification email templates, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
12
|
-
* Guide</i>.</p>
|
|
13
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
14
|
-
* @example
|
|
15
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
-
* ```javascript
|
|
17
|
-
* import { SESClient, UpdateCustomVerificationEmailTemplateCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
18
|
-
* // const { SESClient, UpdateCustomVerificationEmailTemplateCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
19
|
-
* const client = new SESClient(config);
|
|
20
|
-
* const command = new UpdateCustomVerificationEmailTemplateCommand(input);
|
|
21
|
-
* const response = await client.send(command);
|
|
22
|
-
* ```
|
|
23
|
-
*
|
|
24
|
-
* @see {@link UpdateCustomVerificationEmailTemplateCommandInput} for command's `input` shape.
|
|
25
|
-
* @see {@link UpdateCustomVerificationEmailTemplateCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
27
|
-
*
|
|
28
|
-
*/
|
|
29
|
-
export declare class UpdateCustomVerificationEmailTemplateCommand extends $Command<UpdateCustomVerificationEmailTemplateCommandInput, UpdateCustomVerificationEmailTemplateCommandOutput, SESClientResolvedConfig> {
|
|
30
|
-
readonly input: UpdateCustomVerificationEmailTemplateCommandInput;
|
|
31
|
-
constructor(input: UpdateCustomVerificationEmailTemplateCommandInput);
|
|
32
|
-
/**
|
|
33
|
-
* @internal
|
|
34
|
-
*/
|
|
35
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCustomVerificationEmailTemplateCommandInput, UpdateCustomVerificationEmailTemplateCommandOutput>;
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { UpdateReceiptRuleRequest, UpdateReceiptRuleResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateReceiptRuleCommandInput extends UpdateReceiptRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateReceiptRuleCommandOutput extends UpdateReceiptRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Updates a receipt rule.</p>
|
|
11
|
-
* <p>For information about managing receipt rules, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html">Amazon SES
|
|
12
|
-
* Developer Guide</a>.</p>
|
|
13
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
14
|
-
* @example
|
|
15
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
-
* ```javascript
|
|
17
|
-
* import { SESClient, UpdateReceiptRuleCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
18
|
-
* // const { SESClient, UpdateReceiptRuleCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
19
|
-
* const client = new SESClient(config);
|
|
20
|
-
* const command = new UpdateReceiptRuleCommand(input);
|
|
21
|
-
* const response = await client.send(command);
|
|
22
|
-
* ```
|
|
23
|
-
*
|
|
24
|
-
* @see {@link UpdateReceiptRuleCommandInput} for command's `input` shape.
|
|
25
|
-
* @see {@link UpdateReceiptRuleCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
27
|
-
*
|
|
28
|
-
*/
|
|
29
|
-
export declare class UpdateReceiptRuleCommand extends $Command<UpdateReceiptRuleCommandInput, UpdateReceiptRuleCommandOutput, SESClientResolvedConfig> {
|
|
30
|
-
readonly input: UpdateReceiptRuleCommandInput;
|
|
31
|
-
constructor(input: UpdateReceiptRuleCommandInput);
|
|
32
|
-
/**
|
|
33
|
-
* @internal
|
|
34
|
-
*/
|
|
35
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateReceiptRuleCommandInput, UpdateReceiptRuleCommandOutput>;
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateTemplateCommandInput extends UpdateTemplateRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Updates an email template. Email templates enable you to send personalized email to
|
|
11
|
-
* one or more destinations in a single API operation. For more information, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html">Amazon SES Developer
|
|
12
|
-
* Guide</a>.</p>
|
|
13
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
14
|
-
* @example
|
|
15
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
-
* ```javascript
|
|
17
|
-
* import { SESClient, UpdateTemplateCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
18
|
-
* // const { SESClient, UpdateTemplateCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
19
|
-
* const client = new SESClient(config);
|
|
20
|
-
* const command = new UpdateTemplateCommand(input);
|
|
21
|
-
* const response = await client.send(command);
|
|
22
|
-
* ```
|
|
23
|
-
*
|
|
24
|
-
* @see {@link UpdateTemplateCommandInput} for command's `input` shape.
|
|
25
|
-
* @see {@link UpdateTemplateCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
27
|
-
*
|
|
28
|
-
*/
|
|
29
|
-
export declare class UpdateTemplateCommand extends $Command<UpdateTemplateCommandInput, UpdateTemplateCommandOutput, SESClientResolvedConfig> {
|
|
30
|
-
readonly input: UpdateTemplateCommandInput;
|
|
31
|
-
constructor(input: UpdateTemplateCommandInput);
|
|
32
|
-
/**
|
|
33
|
-
* @internal
|
|
34
|
-
*/
|
|
35
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTemplateCommandInput, UpdateTemplateCommandOutput>;
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { VerifyDomainDkimRequest, VerifyDomainDkimResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface VerifyDomainDkimCommandInput extends VerifyDomainDkimRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface VerifyDomainDkimCommandOutput extends VerifyDomainDkimResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Returns a set of DKIM tokens for a domain identity.</p>
|
|
11
|
-
* <important>
|
|
12
|
-
* <p>When you execute the <code>VerifyDomainDkim</code> operation, the domain that you
|
|
13
|
-
* specify is added to the list of identities that are associated with your account.
|
|
14
|
-
* This is true even if you haven't already associated the domain with your account by
|
|
15
|
-
* using the <code>VerifyDomainIdentity</code> operation. However, you can't send email
|
|
16
|
-
* from the domain until you either successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html">verify it</a> or you
|
|
17
|
-
* successfully <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">set up DKIM for
|
|
18
|
-
* it</a>.</p>
|
|
19
|
-
* </important>
|
|
20
|
-
* <p>You use the tokens that are generated by this operation to create CNAME records. When
|
|
21
|
-
* Amazon SES detects that you've added these records to the DNS configuration for a domain, you
|
|
22
|
-
* can start sending email from that domain. You can start sending email even if you
|
|
23
|
-
* haven't added the TXT record provided by the VerifyDomainIdentity operation to the DNS
|
|
24
|
-
* configuration for your domain. All email that you send from the domain is authenticated
|
|
25
|
-
* using DKIM.</p>
|
|
26
|
-
* <p>To create the CNAME records for DKIM authentication, use the following values:</p>
|
|
27
|
-
* <ul>
|
|
28
|
-
* <li>
|
|
29
|
-
* <p>
|
|
30
|
-
* <b>Name</b>:
|
|
31
|
-
* <i>token</i>._domainkey.<i>example.com</i>
|
|
32
|
-
* </p>
|
|
33
|
-
* </li>
|
|
34
|
-
* <li>
|
|
35
|
-
* <p>
|
|
36
|
-
* <b>Type</b>: CNAME</p>
|
|
37
|
-
* </li>
|
|
38
|
-
* <li>
|
|
39
|
-
* <p>
|
|
40
|
-
* <b>Value</b>:
|
|
41
|
-
* <i>token</i>.dkim.amazonses.com</p>
|
|
42
|
-
* </li>
|
|
43
|
-
* </ul>
|
|
44
|
-
* <p>In the preceding example, replace <i>token</i> with one of the tokens
|
|
45
|
-
* that are generated when you execute this operation. Replace
|
|
46
|
-
* <i>example.com</i> with your domain. Repeat this process for each
|
|
47
|
-
* token that's generated by this operation.</p>
|
|
48
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
49
|
-
* @example
|
|
50
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
51
|
-
* ```javascript
|
|
52
|
-
* import { SESClient, VerifyDomainDkimCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
53
|
-
* // const { SESClient, VerifyDomainDkimCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
54
|
-
* const client = new SESClient(config);
|
|
55
|
-
* const command = new VerifyDomainDkimCommand(input);
|
|
56
|
-
* const response = await client.send(command);
|
|
57
|
-
* ```
|
|
58
|
-
*
|
|
59
|
-
* @see {@link VerifyDomainDkimCommandInput} for command's `input` shape.
|
|
60
|
-
* @see {@link VerifyDomainDkimCommandOutput} for command's `response` shape.
|
|
61
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
62
|
-
*
|
|
63
|
-
*/
|
|
64
|
-
export declare class VerifyDomainDkimCommand extends $Command<VerifyDomainDkimCommandInput, VerifyDomainDkimCommandOutput, SESClientResolvedConfig> {
|
|
65
|
-
readonly input: VerifyDomainDkimCommandInput;
|
|
66
|
-
constructor(input: VerifyDomainDkimCommandInput);
|
|
67
|
-
/**
|
|
68
|
-
* @internal
|
|
69
|
-
*/
|
|
70
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyDomainDkimCommandInput, VerifyDomainDkimCommandOutput>;
|
|
71
|
-
private serialize;
|
|
72
|
-
private deserialize;
|
|
73
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { VerifyDomainIdentityRequest, VerifyDomainIdentityResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface VerifyDomainIdentityCommandInput extends VerifyDomainIdentityRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface VerifyDomainIdentityCommandOutput extends VerifyDomainIdentityResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Adds a domain to the list of identities for your Amazon SES account in the current AWS
|
|
11
|
-
* Region and attempts to verify it. For more information about verifying domains, see
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying Email
|
|
13
|
-
* Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
14
|
-
* Guide.</i>
|
|
15
|
-
* </p>
|
|
16
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
17
|
-
* @example
|
|
18
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
19
|
-
* ```javascript
|
|
20
|
-
* import { SESClient, VerifyDomainIdentityCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
21
|
-
* // const { SESClient, VerifyDomainIdentityCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
22
|
-
* const client = new SESClient(config);
|
|
23
|
-
* const command = new VerifyDomainIdentityCommand(input);
|
|
24
|
-
* const response = await client.send(command);
|
|
25
|
-
* ```
|
|
26
|
-
*
|
|
27
|
-
* @see {@link VerifyDomainIdentityCommandInput} for command's `input` shape.
|
|
28
|
-
* @see {@link VerifyDomainIdentityCommandOutput} for command's `response` shape.
|
|
29
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
30
|
-
*
|
|
31
|
-
*/
|
|
32
|
-
export declare class VerifyDomainIdentityCommand extends $Command<VerifyDomainIdentityCommandInput, VerifyDomainIdentityCommandOutput, SESClientResolvedConfig> {
|
|
33
|
-
readonly input: VerifyDomainIdentityCommandInput;
|
|
34
|
-
constructor(input: VerifyDomainIdentityCommandInput);
|
|
35
|
-
/**
|
|
36
|
-
* @internal
|
|
37
|
-
*/
|
|
38
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyDomainIdentityCommandInput, VerifyDomainIdentityCommandOutput>;
|
|
39
|
-
private serialize;
|
|
40
|
-
private deserialize;
|
|
41
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { VerifyEmailAddressRequest } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface VerifyEmailAddressCommandInput extends VerifyEmailAddressRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface VerifyEmailAddressCommandOutput extends __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Deprecated. Use the <code>VerifyEmailIdentity</code> operation to verify a new email
|
|
11
|
-
* address.</p>
|
|
12
|
-
* @example
|
|
13
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
-
* ```javascript
|
|
15
|
-
* import { SESClient, VerifyEmailAddressCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
16
|
-
* // const { SESClient, VerifyEmailAddressCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
17
|
-
* const client = new SESClient(config);
|
|
18
|
-
* const command = new VerifyEmailAddressCommand(input);
|
|
19
|
-
* const response = await client.send(command);
|
|
20
|
-
* ```
|
|
21
|
-
*
|
|
22
|
-
* @see {@link VerifyEmailAddressCommandInput} for command's `input` shape.
|
|
23
|
-
* @see {@link VerifyEmailAddressCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
25
|
-
*
|
|
26
|
-
*/
|
|
27
|
-
export declare class VerifyEmailAddressCommand extends $Command<VerifyEmailAddressCommandInput, VerifyEmailAddressCommandOutput, SESClientResolvedConfig> {
|
|
28
|
-
readonly input: VerifyEmailAddressCommandInput;
|
|
29
|
-
constructor(input: VerifyEmailAddressCommandInput);
|
|
30
|
-
/**
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
33
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyEmailAddressCommandInput, VerifyEmailAddressCommandOutput>;
|
|
34
|
-
private serialize;
|
|
35
|
-
private deserialize;
|
|
36
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { SESClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SESClient";
|
|
2
|
-
import { VerifyEmailIdentityRequest, VerifyEmailIdentityResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface VerifyEmailIdentityCommandInput extends VerifyEmailIdentityRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface VerifyEmailIdentityCommandOutput extends VerifyEmailIdentityResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <p>Adds an email address to the list of identities for your Amazon SES account in the current
|
|
11
|
-
* AWS region and attempts to verify it. As a result of executing this operation, a
|
|
12
|
-
* verification email is sent to the specified address.</p>
|
|
13
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
14
|
-
* @example
|
|
15
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
-
* ```javascript
|
|
17
|
-
* import { SESClient, VerifyEmailIdentityCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
18
|
-
* // const { SESClient, VerifyEmailIdentityCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
19
|
-
* const client = new SESClient(config);
|
|
20
|
-
* const command = new VerifyEmailIdentityCommand(input);
|
|
21
|
-
* const response = await client.send(command);
|
|
22
|
-
* ```
|
|
23
|
-
*
|
|
24
|
-
* @see {@link VerifyEmailIdentityCommandInput} for command's `input` shape.
|
|
25
|
-
* @see {@link VerifyEmailIdentityCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
27
|
-
*
|
|
28
|
-
*/
|
|
29
|
-
export declare class VerifyEmailIdentityCommand extends $Command<VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput, SESClientResolvedConfig> {
|
|
30
|
-
readonly input: VerifyEmailIdentityCommandInput;
|
|
31
|
-
constructor(input: VerifyEmailIdentityCommandInput);
|
|
32
|
-
/**
|
|
33
|
-
* @internal
|
|
34
|
-
*/
|
|
35
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SESClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput>;
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListCustomVerificationEmailTemplatesCommandInput, ListCustomVerificationEmailTemplatesCommandOutput } from "../commands/ListCustomVerificationEmailTemplatesCommand";
|
|
2
|
-
import { SESPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListCustomVerificationEmailTemplates(config: SESPaginationConfiguration, input: ListCustomVerificationEmailTemplatesCommandInput, ...additionalArguments: any): Paginator<ListCustomVerificationEmailTemplatesCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListIdentitiesCommandInput, ListIdentitiesCommandOutput } from "../commands/ListIdentitiesCommand";
|
|
2
|
-
import { SESPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListIdentities(config: SESPaginationConfiguration, input: ListIdentitiesCommandInput, ...additionalArguments: any): Paginator<ListIdentitiesCommandOutput>;
|
|
@@ -1,215 +0,0 @@
|
|
|
1
|
-
import { CloneReceiptRuleSetCommandInput, CloneReceiptRuleSetCommandOutput } from "../commands/CloneReceiptRuleSetCommand";
|
|
2
|
-
import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "../commands/CreateConfigurationSetCommand";
|
|
3
|
-
import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "../commands/CreateConfigurationSetEventDestinationCommand";
|
|
4
|
-
import { CreateConfigurationSetTrackingOptionsCommandInput, CreateConfigurationSetTrackingOptionsCommandOutput } from "../commands/CreateConfigurationSetTrackingOptionsCommand";
|
|
5
|
-
import { CreateCustomVerificationEmailTemplateCommandInput, CreateCustomVerificationEmailTemplateCommandOutput } from "../commands/CreateCustomVerificationEmailTemplateCommand";
|
|
6
|
-
import { CreateReceiptFilterCommandInput, CreateReceiptFilterCommandOutput } from "../commands/CreateReceiptFilterCommand";
|
|
7
|
-
import { CreateReceiptRuleCommandInput, CreateReceiptRuleCommandOutput } from "../commands/CreateReceiptRuleCommand";
|
|
8
|
-
import { CreateReceiptRuleSetCommandInput, CreateReceiptRuleSetCommandOutput } from "../commands/CreateReceiptRuleSetCommand";
|
|
9
|
-
import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "../commands/CreateTemplateCommand";
|
|
10
|
-
import { DeleteConfigurationSetCommandInput, DeleteConfigurationSetCommandOutput } from "../commands/DeleteConfigurationSetCommand";
|
|
11
|
-
import { DeleteConfigurationSetEventDestinationCommandInput, DeleteConfigurationSetEventDestinationCommandOutput } from "../commands/DeleteConfigurationSetEventDestinationCommand";
|
|
12
|
-
import { DeleteConfigurationSetTrackingOptionsCommandInput, DeleteConfigurationSetTrackingOptionsCommandOutput } from "../commands/DeleteConfigurationSetTrackingOptionsCommand";
|
|
13
|
-
import { DeleteCustomVerificationEmailTemplateCommandInput, DeleteCustomVerificationEmailTemplateCommandOutput } from "../commands/DeleteCustomVerificationEmailTemplateCommand";
|
|
14
|
-
import { DeleteIdentityCommandInput, DeleteIdentityCommandOutput } from "../commands/DeleteIdentityCommand";
|
|
15
|
-
import { DeleteIdentityPolicyCommandInput, DeleteIdentityPolicyCommandOutput } from "../commands/DeleteIdentityPolicyCommand";
|
|
16
|
-
import { DeleteReceiptFilterCommandInput, DeleteReceiptFilterCommandOutput } from "../commands/DeleteReceiptFilterCommand";
|
|
17
|
-
import { DeleteReceiptRuleCommandInput, DeleteReceiptRuleCommandOutput } from "../commands/DeleteReceiptRuleCommand";
|
|
18
|
-
import { DeleteReceiptRuleSetCommandInput, DeleteReceiptRuleSetCommandOutput } from "../commands/DeleteReceiptRuleSetCommand";
|
|
19
|
-
import { DeleteTemplateCommandInput, DeleteTemplateCommandOutput } from "../commands/DeleteTemplateCommand";
|
|
20
|
-
import { DeleteVerifiedEmailAddressCommandInput, DeleteVerifiedEmailAddressCommandOutput } from "../commands/DeleteVerifiedEmailAddressCommand";
|
|
21
|
-
import { DescribeActiveReceiptRuleSetCommandInput, DescribeActiveReceiptRuleSetCommandOutput } from "../commands/DescribeActiveReceiptRuleSetCommand";
|
|
22
|
-
import { DescribeConfigurationSetCommandInput, DescribeConfigurationSetCommandOutput } from "../commands/DescribeConfigurationSetCommand";
|
|
23
|
-
import { DescribeReceiptRuleCommandInput, DescribeReceiptRuleCommandOutput } from "../commands/DescribeReceiptRuleCommand";
|
|
24
|
-
import { DescribeReceiptRuleSetCommandInput, DescribeReceiptRuleSetCommandOutput } from "../commands/DescribeReceiptRuleSetCommand";
|
|
25
|
-
import { GetAccountSendingEnabledCommandInput, GetAccountSendingEnabledCommandOutput } from "../commands/GetAccountSendingEnabledCommand";
|
|
26
|
-
import { GetCustomVerificationEmailTemplateCommandInput, GetCustomVerificationEmailTemplateCommandOutput } from "../commands/GetCustomVerificationEmailTemplateCommand";
|
|
27
|
-
import { GetIdentityDkimAttributesCommandInput, GetIdentityDkimAttributesCommandOutput } from "../commands/GetIdentityDkimAttributesCommand";
|
|
28
|
-
import { GetIdentityMailFromDomainAttributesCommandInput, GetIdentityMailFromDomainAttributesCommandOutput } from "../commands/GetIdentityMailFromDomainAttributesCommand";
|
|
29
|
-
import { GetIdentityNotificationAttributesCommandInput, GetIdentityNotificationAttributesCommandOutput } from "../commands/GetIdentityNotificationAttributesCommand";
|
|
30
|
-
import { GetIdentityPoliciesCommandInput, GetIdentityPoliciesCommandOutput } from "../commands/GetIdentityPoliciesCommand";
|
|
31
|
-
import { GetIdentityVerificationAttributesCommandInput, GetIdentityVerificationAttributesCommandOutput } from "../commands/GetIdentityVerificationAttributesCommand";
|
|
32
|
-
import { GetSendQuotaCommandInput, GetSendQuotaCommandOutput } from "../commands/GetSendQuotaCommand";
|
|
33
|
-
import { GetSendStatisticsCommandInput, GetSendStatisticsCommandOutput } from "../commands/GetSendStatisticsCommand";
|
|
34
|
-
import { GetTemplateCommandInput, GetTemplateCommandOutput } from "../commands/GetTemplateCommand";
|
|
35
|
-
import { ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput } from "../commands/ListConfigurationSetsCommand";
|
|
36
|
-
import { ListCustomVerificationEmailTemplatesCommandInput, ListCustomVerificationEmailTemplatesCommandOutput } from "../commands/ListCustomVerificationEmailTemplatesCommand";
|
|
37
|
-
import { ListIdentitiesCommandInput, ListIdentitiesCommandOutput } from "../commands/ListIdentitiesCommand";
|
|
38
|
-
import { ListIdentityPoliciesCommandInput, ListIdentityPoliciesCommandOutput } from "../commands/ListIdentityPoliciesCommand";
|
|
39
|
-
import { ListReceiptFiltersCommandInput, ListReceiptFiltersCommandOutput } from "../commands/ListReceiptFiltersCommand";
|
|
40
|
-
import { ListReceiptRuleSetsCommandInput, ListReceiptRuleSetsCommandOutput } from "../commands/ListReceiptRuleSetsCommand";
|
|
41
|
-
import { ListTemplatesCommandInput, ListTemplatesCommandOutput } from "../commands/ListTemplatesCommand";
|
|
42
|
-
import { ListVerifiedEmailAddressesCommandInput, ListVerifiedEmailAddressesCommandOutput } from "../commands/ListVerifiedEmailAddressesCommand";
|
|
43
|
-
import { PutConfigurationSetDeliveryOptionsCommandInput, PutConfigurationSetDeliveryOptionsCommandOutput } from "../commands/PutConfigurationSetDeliveryOptionsCommand";
|
|
44
|
-
import { PutIdentityPolicyCommandInput, PutIdentityPolicyCommandOutput } from "../commands/PutIdentityPolicyCommand";
|
|
45
|
-
import { ReorderReceiptRuleSetCommandInput, ReorderReceiptRuleSetCommandOutput } from "../commands/ReorderReceiptRuleSetCommand";
|
|
46
|
-
import { SendBounceCommandInput, SendBounceCommandOutput } from "../commands/SendBounceCommand";
|
|
47
|
-
import { SendBulkTemplatedEmailCommandInput, SendBulkTemplatedEmailCommandOutput } from "../commands/SendBulkTemplatedEmailCommand";
|
|
48
|
-
import { SendCustomVerificationEmailCommandInput, SendCustomVerificationEmailCommandOutput } from "../commands/SendCustomVerificationEmailCommand";
|
|
49
|
-
import { SendEmailCommandInput, SendEmailCommandOutput } from "../commands/SendEmailCommand";
|
|
50
|
-
import { SendRawEmailCommandInput, SendRawEmailCommandOutput } from "../commands/SendRawEmailCommand";
|
|
51
|
-
import { SendTemplatedEmailCommandInput, SendTemplatedEmailCommandOutput } from "../commands/SendTemplatedEmailCommand";
|
|
52
|
-
import { SetActiveReceiptRuleSetCommandInput, SetActiveReceiptRuleSetCommandOutput } from "../commands/SetActiveReceiptRuleSetCommand";
|
|
53
|
-
import { SetIdentityDkimEnabledCommandInput, SetIdentityDkimEnabledCommandOutput } from "../commands/SetIdentityDkimEnabledCommand";
|
|
54
|
-
import { SetIdentityFeedbackForwardingEnabledCommandInput, SetIdentityFeedbackForwardingEnabledCommandOutput } from "../commands/SetIdentityFeedbackForwardingEnabledCommand";
|
|
55
|
-
import { SetIdentityHeadersInNotificationsEnabledCommandInput, SetIdentityHeadersInNotificationsEnabledCommandOutput } from "../commands/SetIdentityHeadersInNotificationsEnabledCommand";
|
|
56
|
-
import { SetIdentityMailFromDomainCommandInput, SetIdentityMailFromDomainCommandOutput } from "../commands/SetIdentityMailFromDomainCommand";
|
|
57
|
-
import { SetIdentityNotificationTopicCommandInput, SetIdentityNotificationTopicCommandOutput } from "../commands/SetIdentityNotificationTopicCommand";
|
|
58
|
-
import { SetReceiptRulePositionCommandInput, SetReceiptRulePositionCommandOutput } from "../commands/SetReceiptRulePositionCommand";
|
|
59
|
-
import { TestRenderTemplateCommandInput, TestRenderTemplateCommandOutput } from "../commands/TestRenderTemplateCommand";
|
|
60
|
-
import { UpdateAccountSendingEnabledCommandInput, UpdateAccountSendingEnabledCommandOutput } from "../commands/UpdateAccountSendingEnabledCommand";
|
|
61
|
-
import { UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput } from "../commands/UpdateConfigurationSetEventDestinationCommand";
|
|
62
|
-
import { UpdateConfigurationSetReputationMetricsEnabledCommandInput, UpdateConfigurationSetReputationMetricsEnabledCommandOutput } from "../commands/UpdateConfigurationSetReputationMetricsEnabledCommand";
|
|
63
|
-
import { UpdateConfigurationSetSendingEnabledCommandInput, UpdateConfigurationSetSendingEnabledCommandOutput } from "../commands/UpdateConfigurationSetSendingEnabledCommand";
|
|
64
|
-
import { UpdateConfigurationSetTrackingOptionsCommandInput, UpdateConfigurationSetTrackingOptionsCommandOutput } from "../commands/UpdateConfigurationSetTrackingOptionsCommand";
|
|
65
|
-
import { UpdateCustomVerificationEmailTemplateCommandInput, UpdateCustomVerificationEmailTemplateCommandOutput } from "../commands/UpdateCustomVerificationEmailTemplateCommand";
|
|
66
|
-
import { UpdateReceiptRuleCommandInput, UpdateReceiptRuleCommandOutput } from "../commands/UpdateReceiptRuleCommand";
|
|
67
|
-
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "../commands/UpdateTemplateCommand";
|
|
68
|
-
import { VerifyDomainDkimCommandInput, VerifyDomainDkimCommandOutput } from "../commands/VerifyDomainDkimCommand";
|
|
69
|
-
import { VerifyDomainIdentityCommandInput, VerifyDomainIdentityCommandOutput } from "../commands/VerifyDomainIdentityCommand";
|
|
70
|
-
import { VerifyEmailAddressCommandInput, VerifyEmailAddressCommandOutput } from "../commands/VerifyEmailAddressCommand";
|
|
71
|
-
import { VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput } from "../commands/VerifyEmailIdentityCommand";
|
|
72
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
73
|
-
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
74
|
-
export declare const serializeAws_queryCloneReceiptRuleSetCommand: (input: CloneReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
-
export declare const serializeAws_queryCreateConfigurationSetCommand: (input: CreateConfigurationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
export declare const serializeAws_queryCreateConfigurationSetEventDestinationCommand: (input: CreateConfigurationSetEventDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
export declare const serializeAws_queryCreateConfigurationSetTrackingOptionsCommand: (input: CreateConfigurationSetTrackingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const serializeAws_queryCreateCustomVerificationEmailTemplateCommand: (input: CreateCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
-
export declare const serializeAws_queryCreateReceiptFilterCommand: (input: CreateReceiptFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
export declare const serializeAws_queryCreateReceiptRuleCommand: (input: CreateReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
export declare const serializeAws_queryCreateReceiptRuleSetCommand: (input: CreateReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const serializeAws_queryCreateTemplateCommand: (input: CreateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
-
export declare const serializeAws_queryDeleteConfigurationSetCommand: (input: DeleteConfigurationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
export declare const serializeAws_queryDeleteConfigurationSetEventDestinationCommand: (input: DeleteConfigurationSetEventDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
export declare const serializeAws_queryDeleteConfigurationSetTrackingOptionsCommand: (input: DeleteConfigurationSetTrackingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const serializeAws_queryDeleteCustomVerificationEmailTemplateCommand: (input: DeleteCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
-
export declare const serializeAws_queryDeleteIdentityCommand: (input: DeleteIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
export declare const serializeAws_queryDeleteIdentityPolicyCommand: (input: DeleteIdentityPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
export declare const serializeAws_queryDeleteReceiptFilterCommand: (input: DeleteReceiptFilterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const serializeAws_queryDeleteReceiptRuleCommand: (input: DeleteReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
-
export declare const serializeAws_queryDeleteReceiptRuleSetCommand: (input: DeleteReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
-
export declare const serializeAws_queryDeleteTemplateCommand: (input: DeleteTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
export declare const serializeAws_queryDeleteVerifiedEmailAddressCommand: (input: DeleteVerifiedEmailAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const serializeAws_queryDescribeActiveReceiptRuleSetCommand: (input: DescribeActiveReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
|
-
export declare const serializeAws_queryDescribeConfigurationSetCommand: (input: DescribeConfigurationSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
-
export declare const serializeAws_queryDescribeReceiptRuleCommand: (input: DescribeReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
export declare const serializeAws_queryDescribeReceiptRuleSetCommand: (input: DescribeReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const serializeAws_queryGetAccountSendingEnabledCommand: (input: GetAccountSendingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
99
|
-
export declare const serializeAws_queryGetCustomVerificationEmailTemplateCommand: (input: GetCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
-
export declare const serializeAws_queryGetIdentityDkimAttributesCommand: (input: GetIdentityDkimAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
export declare const serializeAws_queryGetIdentityMailFromDomainAttributesCommand: (input: GetIdentityMailFromDomainAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const serializeAws_queryGetIdentityNotificationAttributesCommand: (input: GetIdentityNotificationAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
-
export declare const serializeAws_queryGetIdentityPoliciesCommand: (input: GetIdentityPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
-
export declare const serializeAws_queryGetIdentityVerificationAttributesCommand: (input: GetIdentityVerificationAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
export declare const serializeAws_queryGetSendQuotaCommand: (input: GetSendQuotaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const serializeAws_queryGetSendStatisticsCommand: (input: GetSendStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
-
export declare const serializeAws_queryGetTemplateCommand: (input: GetTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
-
export declare const serializeAws_queryListConfigurationSetsCommand: (input: ListConfigurationSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
export declare const serializeAws_queryListCustomVerificationEmailTemplatesCommand: (input: ListCustomVerificationEmailTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const serializeAws_queryListIdentitiesCommand: (input: ListIdentitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
-
export declare const serializeAws_queryListIdentityPoliciesCommand: (input: ListIdentityPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
|
-
export declare const serializeAws_queryListReceiptFiltersCommand: (input: ListReceiptFiltersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
export declare const serializeAws_queryListReceiptRuleSetsCommand: (input: ListReceiptRuleSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const serializeAws_queryListTemplatesCommand: (input: ListTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
|
-
export declare const serializeAws_queryListVerifiedEmailAddressesCommand: (input: ListVerifiedEmailAddressesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
-
export declare const serializeAws_queryPutConfigurationSetDeliveryOptionsCommand: (input: PutConfigurationSetDeliveryOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
export declare const serializeAws_queryPutIdentityPolicyCommand: (input: PutIdentityPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const serializeAws_queryReorderReceiptRuleSetCommand: (input: ReorderReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
-
export declare const serializeAws_querySendBounceCommand: (input: SendBounceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
-
export declare const serializeAws_querySendBulkTemplatedEmailCommand: (input: SendBulkTemplatedEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
export declare const serializeAws_querySendCustomVerificationEmailCommand: (input: SendCustomVerificationEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const serializeAws_querySendEmailCommand: (input: SendEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
-
export declare const serializeAws_querySendRawEmailCommand: (input: SendRawEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
|
-
export declare const serializeAws_querySendTemplatedEmailCommand: (input: SendTemplatedEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
export declare const serializeAws_querySetActiveReceiptRuleSetCommand: (input: SetActiveReceiptRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const serializeAws_querySetIdentityDkimEnabledCommand: (input: SetIdentityDkimEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
|
-
export declare const serializeAws_querySetIdentityFeedbackForwardingEnabledCommand: (input: SetIdentityFeedbackForwardingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
|
-
export declare const serializeAws_querySetIdentityHeadersInNotificationsEnabledCommand: (input: SetIdentityHeadersInNotificationsEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
export declare const serializeAws_querySetIdentityMailFromDomainCommand: (input: SetIdentityMailFromDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const serializeAws_querySetIdentityNotificationTopicCommand: (input: SetIdentityNotificationTopicCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
131
|
-
export declare const serializeAws_querySetReceiptRulePositionCommand: (input: SetReceiptRulePositionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
|
-
export declare const serializeAws_queryTestRenderTemplateCommand: (input: TestRenderTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
export declare const serializeAws_queryUpdateAccountSendingEnabledCommand: (input: UpdateAccountSendingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const serializeAws_queryUpdateConfigurationSetEventDestinationCommand: (input: UpdateConfigurationSetEventDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
135
|
-
export declare const serializeAws_queryUpdateConfigurationSetReputationMetricsEnabledCommand: (input: UpdateConfigurationSetReputationMetricsEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
|
-
export declare const serializeAws_queryUpdateConfigurationSetSendingEnabledCommand: (input: UpdateConfigurationSetSendingEnabledCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
-
export declare const serializeAws_queryUpdateConfigurationSetTrackingOptionsCommand: (input: UpdateConfigurationSetTrackingOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const serializeAws_queryUpdateCustomVerificationEmailTemplateCommand: (input: UpdateCustomVerificationEmailTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
|
-
export declare const serializeAws_queryUpdateReceiptRuleCommand: (input: UpdateReceiptRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
-
export declare const serializeAws_queryUpdateTemplateCommand: (input: UpdateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
|
-
export declare const serializeAws_queryVerifyDomainDkimCommand: (input: VerifyDomainDkimCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const serializeAws_queryVerifyDomainIdentityCommand: (input: VerifyDomainIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
|
-
export declare const serializeAws_queryVerifyEmailAddressCommand: (input: VerifyEmailAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
|
-
export declare const serializeAws_queryVerifyEmailIdentityCommand: (input: VerifyEmailIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
|
-
export declare const deserializeAws_queryCloneReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CloneReceiptRuleSetCommandOutput>;
|
|
146
|
-
export declare const deserializeAws_queryCreateConfigurationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationSetCommandOutput>;
|
|
147
|
-
export declare const deserializeAws_queryCreateConfigurationSetEventDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationSetEventDestinationCommandOutput>;
|
|
148
|
-
export declare const deserializeAws_queryCreateConfigurationSetTrackingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationSetTrackingOptionsCommandOutput>;
|
|
149
|
-
export declare const deserializeAws_queryCreateCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCustomVerificationEmailTemplateCommandOutput>;
|
|
150
|
-
export declare const deserializeAws_queryCreateReceiptFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReceiptFilterCommandOutput>;
|
|
151
|
-
export declare const deserializeAws_queryCreateReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReceiptRuleCommandOutput>;
|
|
152
|
-
export declare const deserializeAws_queryCreateReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReceiptRuleSetCommandOutput>;
|
|
153
|
-
export declare const deserializeAws_queryCreateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateCommandOutput>;
|
|
154
|
-
export declare const deserializeAws_queryDeleteConfigurationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationSetCommandOutput>;
|
|
155
|
-
export declare const deserializeAws_queryDeleteConfigurationSetEventDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationSetEventDestinationCommandOutput>;
|
|
156
|
-
export declare const deserializeAws_queryDeleteConfigurationSetTrackingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationSetTrackingOptionsCommandOutput>;
|
|
157
|
-
export declare const deserializeAws_queryDeleteCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCustomVerificationEmailTemplateCommandOutput>;
|
|
158
|
-
export declare const deserializeAws_queryDeleteIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityCommandOutput>;
|
|
159
|
-
export declare const deserializeAws_queryDeleteIdentityPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityPolicyCommandOutput>;
|
|
160
|
-
export declare const deserializeAws_queryDeleteReceiptFilterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReceiptFilterCommandOutput>;
|
|
161
|
-
export declare const deserializeAws_queryDeleteReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReceiptRuleCommandOutput>;
|
|
162
|
-
export declare const deserializeAws_queryDeleteReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReceiptRuleSetCommandOutput>;
|
|
163
|
-
export declare const deserializeAws_queryDeleteTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTemplateCommandOutput>;
|
|
164
|
-
export declare const deserializeAws_queryDeleteVerifiedEmailAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVerifiedEmailAddressCommandOutput>;
|
|
165
|
-
export declare const deserializeAws_queryDescribeActiveReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeActiveReceiptRuleSetCommandOutput>;
|
|
166
|
-
export declare const deserializeAws_queryDescribeConfigurationSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationSetCommandOutput>;
|
|
167
|
-
export declare const deserializeAws_queryDescribeReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReceiptRuleCommandOutput>;
|
|
168
|
-
export declare const deserializeAws_queryDescribeReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReceiptRuleSetCommandOutput>;
|
|
169
|
-
export declare const deserializeAws_queryGetAccountSendingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSendingEnabledCommandOutput>;
|
|
170
|
-
export declare const deserializeAws_queryGetCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCustomVerificationEmailTemplateCommandOutput>;
|
|
171
|
-
export declare const deserializeAws_queryGetIdentityDkimAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityDkimAttributesCommandOutput>;
|
|
172
|
-
export declare const deserializeAws_queryGetIdentityMailFromDomainAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityMailFromDomainAttributesCommandOutput>;
|
|
173
|
-
export declare const deserializeAws_queryGetIdentityNotificationAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityNotificationAttributesCommandOutput>;
|
|
174
|
-
export declare const deserializeAws_queryGetIdentityPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityPoliciesCommandOutput>;
|
|
175
|
-
export declare const deserializeAws_queryGetIdentityVerificationAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityVerificationAttributesCommandOutput>;
|
|
176
|
-
export declare const deserializeAws_queryGetSendQuotaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSendQuotaCommandOutput>;
|
|
177
|
-
export declare const deserializeAws_queryGetSendStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSendStatisticsCommandOutput>;
|
|
178
|
-
export declare const deserializeAws_queryGetTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateCommandOutput>;
|
|
179
|
-
export declare const deserializeAws_queryListConfigurationSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationSetsCommandOutput>;
|
|
180
|
-
export declare const deserializeAws_queryListCustomVerificationEmailTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCustomVerificationEmailTemplatesCommandOutput>;
|
|
181
|
-
export declare const deserializeAws_queryListIdentitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentitiesCommandOutput>;
|
|
182
|
-
export declare const deserializeAws_queryListIdentityPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentityPoliciesCommandOutput>;
|
|
183
|
-
export declare const deserializeAws_queryListReceiptFiltersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReceiptFiltersCommandOutput>;
|
|
184
|
-
export declare const deserializeAws_queryListReceiptRuleSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReceiptRuleSetsCommandOutput>;
|
|
185
|
-
export declare const deserializeAws_queryListTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTemplatesCommandOutput>;
|
|
186
|
-
export declare const deserializeAws_queryListVerifiedEmailAddressesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVerifiedEmailAddressesCommandOutput>;
|
|
187
|
-
export declare const deserializeAws_queryPutConfigurationSetDeliveryOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutConfigurationSetDeliveryOptionsCommandOutput>;
|
|
188
|
-
export declare const deserializeAws_queryPutIdentityPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutIdentityPolicyCommandOutput>;
|
|
189
|
-
export declare const deserializeAws_queryReorderReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReorderReceiptRuleSetCommandOutput>;
|
|
190
|
-
export declare const deserializeAws_querySendBounceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendBounceCommandOutput>;
|
|
191
|
-
export declare const deserializeAws_querySendBulkTemplatedEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendBulkTemplatedEmailCommandOutput>;
|
|
192
|
-
export declare const deserializeAws_querySendCustomVerificationEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendCustomVerificationEmailCommandOutput>;
|
|
193
|
-
export declare const deserializeAws_querySendEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendEmailCommandOutput>;
|
|
194
|
-
export declare const deserializeAws_querySendRawEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendRawEmailCommandOutput>;
|
|
195
|
-
export declare const deserializeAws_querySendTemplatedEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTemplatedEmailCommandOutput>;
|
|
196
|
-
export declare const deserializeAws_querySetActiveReceiptRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetActiveReceiptRuleSetCommandOutput>;
|
|
197
|
-
export declare const deserializeAws_querySetIdentityDkimEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityDkimEnabledCommandOutput>;
|
|
198
|
-
export declare const deserializeAws_querySetIdentityFeedbackForwardingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityFeedbackForwardingEnabledCommandOutput>;
|
|
199
|
-
export declare const deserializeAws_querySetIdentityHeadersInNotificationsEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityHeadersInNotificationsEnabledCommandOutput>;
|
|
200
|
-
export declare const deserializeAws_querySetIdentityMailFromDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityMailFromDomainCommandOutput>;
|
|
201
|
-
export declare const deserializeAws_querySetIdentityNotificationTopicCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetIdentityNotificationTopicCommandOutput>;
|
|
202
|
-
export declare const deserializeAws_querySetReceiptRulePositionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetReceiptRulePositionCommandOutput>;
|
|
203
|
-
export declare const deserializeAws_queryTestRenderTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestRenderTemplateCommandOutput>;
|
|
204
|
-
export declare const deserializeAws_queryUpdateAccountSendingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccountSendingEnabledCommandOutput>;
|
|
205
|
-
export declare const deserializeAws_queryUpdateConfigurationSetEventDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetEventDestinationCommandOutput>;
|
|
206
|
-
export declare const deserializeAws_queryUpdateConfigurationSetReputationMetricsEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetReputationMetricsEnabledCommandOutput>;
|
|
207
|
-
export declare const deserializeAws_queryUpdateConfigurationSetSendingEnabledCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetSendingEnabledCommandOutput>;
|
|
208
|
-
export declare const deserializeAws_queryUpdateConfigurationSetTrackingOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationSetTrackingOptionsCommandOutput>;
|
|
209
|
-
export declare const deserializeAws_queryUpdateCustomVerificationEmailTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCustomVerificationEmailTemplateCommandOutput>;
|
|
210
|
-
export declare const deserializeAws_queryUpdateReceiptRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateReceiptRuleCommandOutput>;
|
|
211
|
-
export declare const deserializeAws_queryUpdateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTemplateCommandOutput>;
|
|
212
|
-
export declare const deserializeAws_queryVerifyDomainDkimCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyDomainDkimCommandOutput>;
|
|
213
|
-
export declare const deserializeAws_queryVerifyDomainIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyDomainIdentityCommandOutput>;
|
|
214
|
-
export declare const deserializeAws_queryVerifyEmailAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyEmailAddressCommandOutput>;
|
|
215
|
-
export declare const deserializeAws_queryVerifyEmailIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyEmailIdentityCommandOutput>;
|