@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
package/dist/es/SES.js
DELETED
|
@@ -1,1087 +0,0 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
|
-
import { SESClient } from "./SESClient";
|
|
3
|
-
import { CloneReceiptRuleSetCommand, } from "./commands/CloneReceiptRuleSetCommand";
|
|
4
|
-
import { CreateConfigurationSetCommand, } from "./commands/CreateConfigurationSetCommand";
|
|
5
|
-
import { CreateConfigurationSetEventDestinationCommand, } from "./commands/CreateConfigurationSetEventDestinationCommand";
|
|
6
|
-
import { CreateConfigurationSetTrackingOptionsCommand, } from "./commands/CreateConfigurationSetTrackingOptionsCommand";
|
|
7
|
-
import { CreateCustomVerificationEmailTemplateCommand, } from "./commands/CreateCustomVerificationEmailTemplateCommand";
|
|
8
|
-
import { CreateReceiptFilterCommand, } from "./commands/CreateReceiptFilterCommand";
|
|
9
|
-
import { CreateReceiptRuleCommand, } from "./commands/CreateReceiptRuleCommand";
|
|
10
|
-
import { CreateReceiptRuleSetCommand, } from "./commands/CreateReceiptRuleSetCommand";
|
|
11
|
-
import { CreateTemplateCommand, } from "./commands/CreateTemplateCommand";
|
|
12
|
-
import { DeleteConfigurationSetCommand, } from "./commands/DeleteConfigurationSetCommand";
|
|
13
|
-
import { DeleteConfigurationSetEventDestinationCommand, } from "./commands/DeleteConfigurationSetEventDestinationCommand";
|
|
14
|
-
import { DeleteConfigurationSetTrackingOptionsCommand, } from "./commands/DeleteConfigurationSetTrackingOptionsCommand";
|
|
15
|
-
import { DeleteCustomVerificationEmailTemplateCommand, } from "./commands/DeleteCustomVerificationEmailTemplateCommand";
|
|
16
|
-
import { DeleteIdentityCommand, } from "./commands/DeleteIdentityCommand";
|
|
17
|
-
import { DeleteIdentityPolicyCommand, } from "./commands/DeleteIdentityPolicyCommand";
|
|
18
|
-
import { DeleteReceiptFilterCommand, } from "./commands/DeleteReceiptFilterCommand";
|
|
19
|
-
import { DeleteReceiptRuleCommand, } from "./commands/DeleteReceiptRuleCommand";
|
|
20
|
-
import { DeleteReceiptRuleSetCommand, } from "./commands/DeleteReceiptRuleSetCommand";
|
|
21
|
-
import { DeleteTemplateCommand, } from "./commands/DeleteTemplateCommand";
|
|
22
|
-
import { DeleteVerifiedEmailAddressCommand, } from "./commands/DeleteVerifiedEmailAddressCommand";
|
|
23
|
-
import { DescribeActiveReceiptRuleSetCommand, } from "./commands/DescribeActiveReceiptRuleSetCommand";
|
|
24
|
-
import { DescribeConfigurationSetCommand, } from "./commands/DescribeConfigurationSetCommand";
|
|
25
|
-
import { DescribeReceiptRuleCommand, } from "./commands/DescribeReceiptRuleCommand";
|
|
26
|
-
import { DescribeReceiptRuleSetCommand, } from "./commands/DescribeReceiptRuleSetCommand";
|
|
27
|
-
import { GetAccountSendingEnabledCommand, } from "./commands/GetAccountSendingEnabledCommand";
|
|
28
|
-
import { GetCustomVerificationEmailTemplateCommand, } from "./commands/GetCustomVerificationEmailTemplateCommand";
|
|
29
|
-
import { GetIdentityDkimAttributesCommand, } from "./commands/GetIdentityDkimAttributesCommand";
|
|
30
|
-
import { GetIdentityMailFromDomainAttributesCommand, } from "./commands/GetIdentityMailFromDomainAttributesCommand";
|
|
31
|
-
import { GetIdentityNotificationAttributesCommand, } from "./commands/GetIdentityNotificationAttributesCommand";
|
|
32
|
-
import { GetIdentityPoliciesCommand, } from "./commands/GetIdentityPoliciesCommand";
|
|
33
|
-
import { GetIdentityVerificationAttributesCommand, } from "./commands/GetIdentityVerificationAttributesCommand";
|
|
34
|
-
import { GetSendQuotaCommand, } from "./commands/GetSendQuotaCommand";
|
|
35
|
-
import { GetSendStatisticsCommand, } from "./commands/GetSendStatisticsCommand";
|
|
36
|
-
import { GetTemplateCommand } from "./commands/GetTemplateCommand";
|
|
37
|
-
import { ListConfigurationSetsCommand, } from "./commands/ListConfigurationSetsCommand";
|
|
38
|
-
import { ListCustomVerificationEmailTemplatesCommand, } from "./commands/ListCustomVerificationEmailTemplatesCommand";
|
|
39
|
-
import { ListIdentitiesCommand, } from "./commands/ListIdentitiesCommand";
|
|
40
|
-
import { ListIdentityPoliciesCommand, } from "./commands/ListIdentityPoliciesCommand";
|
|
41
|
-
import { ListReceiptFiltersCommand, } from "./commands/ListReceiptFiltersCommand";
|
|
42
|
-
import { ListReceiptRuleSetsCommand, } from "./commands/ListReceiptRuleSetsCommand";
|
|
43
|
-
import { ListTemplatesCommand, } from "./commands/ListTemplatesCommand";
|
|
44
|
-
import { ListVerifiedEmailAddressesCommand, } from "./commands/ListVerifiedEmailAddressesCommand";
|
|
45
|
-
import { PutConfigurationSetDeliveryOptionsCommand, } from "./commands/PutConfigurationSetDeliveryOptionsCommand";
|
|
46
|
-
import { PutIdentityPolicyCommand, } from "./commands/PutIdentityPolicyCommand";
|
|
47
|
-
import { ReorderReceiptRuleSetCommand, } from "./commands/ReorderReceiptRuleSetCommand";
|
|
48
|
-
import { SendBounceCommand } from "./commands/SendBounceCommand";
|
|
49
|
-
import { SendBulkTemplatedEmailCommand, } from "./commands/SendBulkTemplatedEmailCommand";
|
|
50
|
-
import { SendCustomVerificationEmailCommand, } from "./commands/SendCustomVerificationEmailCommand";
|
|
51
|
-
import { SendEmailCommand } from "./commands/SendEmailCommand";
|
|
52
|
-
import { SendRawEmailCommand, } from "./commands/SendRawEmailCommand";
|
|
53
|
-
import { SendTemplatedEmailCommand, } from "./commands/SendTemplatedEmailCommand";
|
|
54
|
-
import { SetActiveReceiptRuleSetCommand, } from "./commands/SetActiveReceiptRuleSetCommand";
|
|
55
|
-
import { SetIdentityDkimEnabledCommand, } from "./commands/SetIdentityDkimEnabledCommand";
|
|
56
|
-
import { SetIdentityFeedbackForwardingEnabledCommand, } from "./commands/SetIdentityFeedbackForwardingEnabledCommand";
|
|
57
|
-
import { SetIdentityHeadersInNotificationsEnabledCommand, } from "./commands/SetIdentityHeadersInNotificationsEnabledCommand";
|
|
58
|
-
import { SetIdentityMailFromDomainCommand, } from "./commands/SetIdentityMailFromDomainCommand";
|
|
59
|
-
import { SetIdentityNotificationTopicCommand, } from "./commands/SetIdentityNotificationTopicCommand";
|
|
60
|
-
import { SetReceiptRulePositionCommand, } from "./commands/SetReceiptRulePositionCommand";
|
|
61
|
-
import { TestRenderTemplateCommand, } from "./commands/TestRenderTemplateCommand";
|
|
62
|
-
import { UpdateAccountSendingEnabledCommand, } from "./commands/UpdateAccountSendingEnabledCommand";
|
|
63
|
-
import { UpdateConfigurationSetEventDestinationCommand, } from "./commands/UpdateConfigurationSetEventDestinationCommand";
|
|
64
|
-
import { UpdateConfigurationSetReputationMetricsEnabledCommand, } from "./commands/UpdateConfigurationSetReputationMetricsEnabledCommand";
|
|
65
|
-
import { UpdateConfigurationSetSendingEnabledCommand, } from "./commands/UpdateConfigurationSetSendingEnabledCommand";
|
|
66
|
-
import { UpdateConfigurationSetTrackingOptionsCommand, } from "./commands/UpdateConfigurationSetTrackingOptionsCommand";
|
|
67
|
-
import { UpdateCustomVerificationEmailTemplateCommand, } from "./commands/UpdateCustomVerificationEmailTemplateCommand";
|
|
68
|
-
import { UpdateReceiptRuleCommand, } from "./commands/UpdateReceiptRuleCommand";
|
|
69
|
-
import { UpdateTemplateCommand, } from "./commands/UpdateTemplateCommand";
|
|
70
|
-
import { VerifyDomainDkimCommand, } from "./commands/VerifyDomainDkimCommand";
|
|
71
|
-
import { VerifyDomainIdentityCommand, } from "./commands/VerifyDomainIdentityCommand";
|
|
72
|
-
import { VerifyEmailAddressCommand, } from "./commands/VerifyEmailAddressCommand";
|
|
73
|
-
import { VerifyEmailIdentityCommand, } from "./commands/VerifyEmailIdentityCommand";
|
|
74
|
-
/**
|
|
75
|
-
* <fullname>Amazon Simple Email Service</fullname>
|
|
76
|
-
* <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version
|
|
77
|
-
* 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
|
|
78
|
-
* Guide</a>. </p>
|
|
79
|
-
* <note>
|
|
80
|
-
* <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and
|
|
81
|
-
* Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer
|
|
82
|
-
* Guide</a>.</p>
|
|
83
|
-
* </note>
|
|
84
|
-
*/
|
|
85
|
-
var SES = /** @class */ (function (_super) {
|
|
86
|
-
__extends(SES, _super);
|
|
87
|
-
function SES() {
|
|
88
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
89
|
-
}
|
|
90
|
-
SES.prototype.cloneReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
91
|
-
var command = new CloneReceiptRuleSetCommand(args);
|
|
92
|
-
if (typeof optionsOrCb === "function") {
|
|
93
|
-
this.send(command, optionsOrCb);
|
|
94
|
-
}
|
|
95
|
-
else if (typeof cb === "function") {
|
|
96
|
-
if (typeof optionsOrCb !== "object")
|
|
97
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
98
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
99
|
-
}
|
|
100
|
-
else {
|
|
101
|
-
return this.send(command, optionsOrCb);
|
|
102
|
-
}
|
|
103
|
-
};
|
|
104
|
-
SES.prototype.createConfigurationSet = function (args, optionsOrCb, cb) {
|
|
105
|
-
var command = new CreateConfigurationSetCommand(args);
|
|
106
|
-
if (typeof optionsOrCb === "function") {
|
|
107
|
-
this.send(command, optionsOrCb);
|
|
108
|
-
}
|
|
109
|
-
else if (typeof cb === "function") {
|
|
110
|
-
if (typeof optionsOrCb !== "object")
|
|
111
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
112
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
113
|
-
}
|
|
114
|
-
else {
|
|
115
|
-
return this.send(command, optionsOrCb);
|
|
116
|
-
}
|
|
117
|
-
};
|
|
118
|
-
SES.prototype.createConfigurationSetEventDestination = function (args, optionsOrCb, cb) {
|
|
119
|
-
var command = new CreateConfigurationSetEventDestinationCommand(args);
|
|
120
|
-
if (typeof optionsOrCb === "function") {
|
|
121
|
-
this.send(command, optionsOrCb);
|
|
122
|
-
}
|
|
123
|
-
else if (typeof cb === "function") {
|
|
124
|
-
if (typeof optionsOrCb !== "object")
|
|
125
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
126
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
127
|
-
}
|
|
128
|
-
else {
|
|
129
|
-
return this.send(command, optionsOrCb);
|
|
130
|
-
}
|
|
131
|
-
};
|
|
132
|
-
SES.prototype.createConfigurationSetTrackingOptions = function (args, optionsOrCb, cb) {
|
|
133
|
-
var command = new CreateConfigurationSetTrackingOptionsCommand(args);
|
|
134
|
-
if (typeof optionsOrCb === "function") {
|
|
135
|
-
this.send(command, optionsOrCb);
|
|
136
|
-
}
|
|
137
|
-
else if (typeof cb === "function") {
|
|
138
|
-
if (typeof optionsOrCb !== "object")
|
|
139
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
140
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
141
|
-
}
|
|
142
|
-
else {
|
|
143
|
-
return this.send(command, optionsOrCb);
|
|
144
|
-
}
|
|
145
|
-
};
|
|
146
|
-
SES.prototype.createCustomVerificationEmailTemplate = function (args, optionsOrCb, cb) {
|
|
147
|
-
var command = new CreateCustomVerificationEmailTemplateCommand(args);
|
|
148
|
-
if (typeof optionsOrCb === "function") {
|
|
149
|
-
this.send(command, optionsOrCb);
|
|
150
|
-
}
|
|
151
|
-
else if (typeof cb === "function") {
|
|
152
|
-
if (typeof optionsOrCb !== "object")
|
|
153
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
154
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
155
|
-
}
|
|
156
|
-
else {
|
|
157
|
-
return this.send(command, optionsOrCb);
|
|
158
|
-
}
|
|
159
|
-
};
|
|
160
|
-
SES.prototype.createReceiptFilter = function (args, optionsOrCb, cb) {
|
|
161
|
-
var command = new CreateReceiptFilterCommand(args);
|
|
162
|
-
if (typeof optionsOrCb === "function") {
|
|
163
|
-
this.send(command, optionsOrCb);
|
|
164
|
-
}
|
|
165
|
-
else if (typeof cb === "function") {
|
|
166
|
-
if (typeof optionsOrCb !== "object")
|
|
167
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
168
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
169
|
-
}
|
|
170
|
-
else {
|
|
171
|
-
return this.send(command, optionsOrCb);
|
|
172
|
-
}
|
|
173
|
-
};
|
|
174
|
-
SES.prototype.createReceiptRule = function (args, optionsOrCb, cb) {
|
|
175
|
-
var command = new CreateReceiptRuleCommand(args);
|
|
176
|
-
if (typeof optionsOrCb === "function") {
|
|
177
|
-
this.send(command, optionsOrCb);
|
|
178
|
-
}
|
|
179
|
-
else if (typeof cb === "function") {
|
|
180
|
-
if (typeof optionsOrCb !== "object")
|
|
181
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
182
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
183
|
-
}
|
|
184
|
-
else {
|
|
185
|
-
return this.send(command, optionsOrCb);
|
|
186
|
-
}
|
|
187
|
-
};
|
|
188
|
-
SES.prototype.createReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
189
|
-
var command = new CreateReceiptRuleSetCommand(args);
|
|
190
|
-
if (typeof optionsOrCb === "function") {
|
|
191
|
-
this.send(command, optionsOrCb);
|
|
192
|
-
}
|
|
193
|
-
else if (typeof cb === "function") {
|
|
194
|
-
if (typeof optionsOrCb !== "object")
|
|
195
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
196
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
197
|
-
}
|
|
198
|
-
else {
|
|
199
|
-
return this.send(command, optionsOrCb);
|
|
200
|
-
}
|
|
201
|
-
};
|
|
202
|
-
SES.prototype.createTemplate = function (args, optionsOrCb, cb) {
|
|
203
|
-
var command = new CreateTemplateCommand(args);
|
|
204
|
-
if (typeof optionsOrCb === "function") {
|
|
205
|
-
this.send(command, optionsOrCb);
|
|
206
|
-
}
|
|
207
|
-
else if (typeof cb === "function") {
|
|
208
|
-
if (typeof optionsOrCb !== "object")
|
|
209
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
210
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
211
|
-
}
|
|
212
|
-
else {
|
|
213
|
-
return this.send(command, optionsOrCb);
|
|
214
|
-
}
|
|
215
|
-
};
|
|
216
|
-
SES.prototype.deleteConfigurationSet = function (args, optionsOrCb, cb) {
|
|
217
|
-
var command = new DeleteConfigurationSetCommand(args);
|
|
218
|
-
if (typeof optionsOrCb === "function") {
|
|
219
|
-
this.send(command, optionsOrCb);
|
|
220
|
-
}
|
|
221
|
-
else if (typeof cb === "function") {
|
|
222
|
-
if (typeof optionsOrCb !== "object")
|
|
223
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
224
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
225
|
-
}
|
|
226
|
-
else {
|
|
227
|
-
return this.send(command, optionsOrCb);
|
|
228
|
-
}
|
|
229
|
-
};
|
|
230
|
-
SES.prototype.deleteConfigurationSetEventDestination = function (args, optionsOrCb, cb) {
|
|
231
|
-
var command = new DeleteConfigurationSetEventDestinationCommand(args);
|
|
232
|
-
if (typeof optionsOrCb === "function") {
|
|
233
|
-
this.send(command, optionsOrCb);
|
|
234
|
-
}
|
|
235
|
-
else if (typeof cb === "function") {
|
|
236
|
-
if (typeof optionsOrCb !== "object")
|
|
237
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
238
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
239
|
-
}
|
|
240
|
-
else {
|
|
241
|
-
return this.send(command, optionsOrCb);
|
|
242
|
-
}
|
|
243
|
-
};
|
|
244
|
-
SES.prototype.deleteConfigurationSetTrackingOptions = function (args, optionsOrCb, cb) {
|
|
245
|
-
var command = new DeleteConfigurationSetTrackingOptionsCommand(args);
|
|
246
|
-
if (typeof optionsOrCb === "function") {
|
|
247
|
-
this.send(command, optionsOrCb);
|
|
248
|
-
}
|
|
249
|
-
else if (typeof cb === "function") {
|
|
250
|
-
if (typeof optionsOrCb !== "object")
|
|
251
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
252
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
253
|
-
}
|
|
254
|
-
else {
|
|
255
|
-
return this.send(command, optionsOrCb);
|
|
256
|
-
}
|
|
257
|
-
};
|
|
258
|
-
SES.prototype.deleteCustomVerificationEmailTemplate = function (args, optionsOrCb, cb) {
|
|
259
|
-
var command = new DeleteCustomVerificationEmailTemplateCommand(args);
|
|
260
|
-
if (typeof optionsOrCb === "function") {
|
|
261
|
-
this.send(command, optionsOrCb);
|
|
262
|
-
}
|
|
263
|
-
else if (typeof cb === "function") {
|
|
264
|
-
if (typeof optionsOrCb !== "object")
|
|
265
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
266
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
267
|
-
}
|
|
268
|
-
else {
|
|
269
|
-
return this.send(command, optionsOrCb);
|
|
270
|
-
}
|
|
271
|
-
};
|
|
272
|
-
SES.prototype.deleteIdentity = function (args, optionsOrCb, cb) {
|
|
273
|
-
var command = new DeleteIdentityCommand(args);
|
|
274
|
-
if (typeof optionsOrCb === "function") {
|
|
275
|
-
this.send(command, optionsOrCb);
|
|
276
|
-
}
|
|
277
|
-
else if (typeof cb === "function") {
|
|
278
|
-
if (typeof optionsOrCb !== "object")
|
|
279
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
280
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
281
|
-
}
|
|
282
|
-
else {
|
|
283
|
-
return this.send(command, optionsOrCb);
|
|
284
|
-
}
|
|
285
|
-
};
|
|
286
|
-
SES.prototype.deleteIdentityPolicy = function (args, optionsOrCb, cb) {
|
|
287
|
-
var command = new DeleteIdentityPolicyCommand(args);
|
|
288
|
-
if (typeof optionsOrCb === "function") {
|
|
289
|
-
this.send(command, optionsOrCb);
|
|
290
|
-
}
|
|
291
|
-
else if (typeof cb === "function") {
|
|
292
|
-
if (typeof optionsOrCb !== "object")
|
|
293
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
294
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
295
|
-
}
|
|
296
|
-
else {
|
|
297
|
-
return this.send(command, optionsOrCb);
|
|
298
|
-
}
|
|
299
|
-
};
|
|
300
|
-
SES.prototype.deleteReceiptFilter = function (args, optionsOrCb, cb) {
|
|
301
|
-
var command = new DeleteReceiptFilterCommand(args);
|
|
302
|
-
if (typeof optionsOrCb === "function") {
|
|
303
|
-
this.send(command, optionsOrCb);
|
|
304
|
-
}
|
|
305
|
-
else if (typeof cb === "function") {
|
|
306
|
-
if (typeof optionsOrCb !== "object")
|
|
307
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
308
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
309
|
-
}
|
|
310
|
-
else {
|
|
311
|
-
return this.send(command, optionsOrCb);
|
|
312
|
-
}
|
|
313
|
-
};
|
|
314
|
-
SES.prototype.deleteReceiptRule = function (args, optionsOrCb, cb) {
|
|
315
|
-
var command = new DeleteReceiptRuleCommand(args);
|
|
316
|
-
if (typeof optionsOrCb === "function") {
|
|
317
|
-
this.send(command, optionsOrCb);
|
|
318
|
-
}
|
|
319
|
-
else if (typeof cb === "function") {
|
|
320
|
-
if (typeof optionsOrCb !== "object")
|
|
321
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
322
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
323
|
-
}
|
|
324
|
-
else {
|
|
325
|
-
return this.send(command, optionsOrCb);
|
|
326
|
-
}
|
|
327
|
-
};
|
|
328
|
-
SES.prototype.deleteReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
329
|
-
var command = new DeleteReceiptRuleSetCommand(args);
|
|
330
|
-
if (typeof optionsOrCb === "function") {
|
|
331
|
-
this.send(command, optionsOrCb);
|
|
332
|
-
}
|
|
333
|
-
else if (typeof cb === "function") {
|
|
334
|
-
if (typeof optionsOrCb !== "object")
|
|
335
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
336
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
337
|
-
}
|
|
338
|
-
else {
|
|
339
|
-
return this.send(command, optionsOrCb);
|
|
340
|
-
}
|
|
341
|
-
};
|
|
342
|
-
SES.prototype.deleteTemplate = function (args, optionsOrCb, cb) {
|
|
343
|
-
var command = new DeleteTemplateCommand(args);
|
|
344
|
-
if (typeof optionsOrCb === "function") {
|
|
345
|
-
this.send(command, optionsOrCb);
|
|
346
|
-
}
|
|
347
|
-
else if (typeof cb === "function") {
|
|
348
|
-
if (typeof optionsOrCb !== "object")
|
|
349
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
350
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
351
|
-
}
|
|
352
|
-
else {
|
|
353
|
-
return this.send(command, optionsOrCb);
|
|
354
|
-
}
|
|
355
|
-
};
|
|
356
|
-
SES.prototype.deleteVerifiedEmailAddress = function (args, optionsOrCb, cb) {
|
|
357
|
-
var command = new DeleteVerifiedEmailAddressCommand(args);
|
|
358
|
-
if (typeof optionsOrCb === "function") {
|
|
359
|
-
this.send(command, optionsOrCb);
|
|
360
|
-
}
|
|
361
|
-
else if (typeof cb === "function") {
|
|
362
|
-
if (typeof optionsOrCb !== "object")
|
|
363
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
364
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
365
|
-
}
|
|
366
|
-
else {
|
|
367
|
-
return this.send(command, optionsOrCb);
|
|
368
|
-
}
|
|
369
|
-
};
|
|
370
|
-
SES.prototype.describeActiveReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
371
|
-
var command = new DescribeActiveReceiptRuleSetCommand(args);
|
|
372
|
-
if (typeof optionsOrCb === "function") {
|
|
373
|
-
this.send(command, optionsOrCb);
|
|
374
|
-
}
|
|
375
|
-
else if (typeof cb === "function") {
|
|
376
|
-
if (typeof optionsOrCb !== "object")
|
|
377
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
378
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
379
|
-
}
|
|
380
|
-
else {
|
|
381
|
-
return this.send(command, optionsOrCb);
|
|
382
|
-
}
|
|
383
|
-
};
|
|
384
|
-
SES.prototype.describeConfigurationSet = function (args, optionsOrCb, cb) {
|
|
385
|
-
var command = new DescribeConfigurationSetCommand(args);
|
|
386
|
-
if (typeof optionsOrCb === "function") {
|
|
387
|
-
this.send(command, optionsOrCb);
|
|
388
|
-
}
|
|
389
|
-
else if (typeof cb === "function") {
|
|
390
|
-
if (typeof optionsOrCb !== "object")
|
|
391
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
392
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
393
|
-
}
|
|
394
|
-
else {
|
|
395
|
-
return this.send(command, optionsOrCb);
|
|
396
|
-
}
|
|
397
|
-
};
|
|
398
|
-
SES.prototype.describeReceiptRule = function (args, optionsOrCb, cb) {
|
|
399
|
-
var command = new DescribeReceiptRuleCommand(args);
|
|
400
|
-
if (typeof optionsOrCb === "function") {
|
|
401
|
-
this.send(command, optionsOrCb);
|
|
402
|
-
}
|
|
403
|
-
else if (typeof cb === "function") {
|
|
404
|
-
if (typeof optionsOrCb !== "object")
|
|
405
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
406
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
407
|
-
}
|
|
408
|
-
else {
|
|
409
|
-
return this.send(command, optionsOrCb);
|
|
410
|
-
}
|
|
411
|
-
};
|
|
412
|
-
SES.prototype.describeReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
413
|
-
var command = new DescribeReceiptRuleSetCommand(args);
|
|
414
|
-
if (typeof optionsOrCb === "function") {
|
|
415
|
-
this.send(command, optionsOrCb);
|
|
416
|
-
}
|
|
417
|
-
else if (typeof cb === "function") {
|
|
418
|
-
if (typeof optionsOrCb !== "object")
|
|
419
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
420
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
421
|
-
}
|
|
422
|
-
else {
|
|
423
|
-
return this.send(command, optionsOrCb);
|
|
424
|
-
}
|
|
425
|
-
};
|
|
426
|
-
SES.prototype.getAccountSendingEnabled = function (args, optionsOrCb, cb) {
|
|
427
|
-
var command = new GetAccountSendingEnabledCommand(args);
|
|
428
|
-
if (typeof optionsOrCb === "function") {
|
|
429
|
-
this.send(command, optionsOrCb);
|
|
430
|
-
}
|
|
431
|
-
else if (typeof cb === "function") {
|
|
432
|
-
if (typeof optionsOrCb !== "object")
|
|
433
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
434
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
435
|
-
}
|
|
436
|
-
else {
|
|
437
|
-
return this.send(command, optionsOrCb);
|
|
438
|
-
}
|
|
439
|
-
};
|
|
440
|
-
SES.prototype.getCustomVerificationEmailTemplate = function (args, optionsOrCb, cb) {
|
|
441
|
-
var command = new GetCustomVerificationEmailTemplateCommand(args);
|
|
442
|
-
if (typeof optionsOrCb === "function") {
|
|
443
|
-
this.send(command, optionsOrCb);
|
|
444
|
-
}
|
|
445
|
-
else if (typeof cb === "function") {
|
|
446
|
-
if (typeof optionsOrCb !== "object")
|
|
447
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
448
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
449
|
-
}
|
|
450
|
-
else {
|
|
451
|
-
return this.send(command, optionsOrCb);
|
|
452
|
-
}
|
|
453
|
-
};
|
|
454
|
-
SES.prototype.getIdentityDkimAttributes = function (args, optionsOrCb, cb) {
|
|
455
|
-
var command = new GetIdentityDkimAttributesCommand(args);
|
|
456
|
-
if (typeof optionsOrCb === "function") {
|
|
457
|
-
this.send(command, optionsOrCb);
|
|
458
|
-
}
|
|
459
|
-
else if (typeof cb === "function") {
|
|
460
|
-
if (typeof optionsOrCb !== "object")
|
|
461
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
462
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
463
|
-
}
|
|
464
|
-
else {
|
|
465
|
-
return this.send(command, optionsOrCb);
|
|
466
|
-
}
|
|
467
|
-
};
|
|
468
|
-
SES.prototype.getIdentityMailFromDomainAttributes = function (args, optionsOrCb, cb) {
|
|
469
|
-
var command = new GetIdentityMailFromDomainAttributesCommand(args);
|
|
470
|
-
if (typeof optionsOrCb === "function") {
|
|
471
|
-
this.send(command, optionsOrCb);
|
|
472
|
-
}
|
|
473
|
-
else if (typeof cb === "function") {
|
|
474
|
-
if (typeof optionsOrCb !== "object")
|
|
475
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
476
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
477
|
-
}
|
|
478
|
-
else {
|
|
479
|
-
return this.send(command, optionsOrCb);
|
|
480
|
-
}
|
|
481
|
-
};
|
|
482
|
-
SES.prototype.getIdentityNotificationAttributes = function (args, optionsOrCb, cb) {
|
|
483
|
-
var command = new GetIdentityNotificationAttributesCommand(args);
|
|
484
|
-
if (typeof optionsOrCb === "function") {
|
|
485
|
-
this.send(command, optionsOrCb);
|
|
486
|
-
}
|
|
487
|
-
else if (typeof cb === "function") {
|
|
488
|
-
if (typeof optionsOrCb !== "object")
|
|
489
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
490
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
491
|
-
}
|
|
492
|
-
else {
|
|
493
|
-
return this.send(command, optionsOrCb);
|
|
494
|
-
}
|
|
495
|
-
};
|
|
496
|
-
SES.prototype.getIdentityPolicies = function (args, optionsOrCb, cb) {
|
|
497
|
-
var command = new GetIdentityPoliciesCommand(args);
|
|
498
|
-
if (typeof optionsOrCb === "function") {
|
|
499
|
-
this.send(command, optionsOrCb);
|
|
500
|
-
}
|
|
501
|
-
else if (typeof cb === "function") {
|
|
502
|
-
if (typeof optionsOrCb !== "object")
|
|
503
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
504
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
505
|
-
}
|
|
506
|
-
else {
|
|
507
|
-
return this.send(command, optionsOrCb);
|
|
508
|
-
}
|
|
509
|
-
};
|
|
510
|
-
SES.prototype.getIdentityVerificationAttributes = function (args, optionsOrCb, cb) {
|
|
511
|
-
var command = new GetIdentityVerificationAttributesCommand(args);
|
|
512
|
-
if (typeof optionsOrCb === "function") {
|
|
513
|
-
this.send(command, optionsOrCb);
|
|
514
|
-
}
|
|
515
|
-
else if (typeof cb === "function") {
|
|
516
|
-
if (typeof optionsOrCb !== "object")
|
|
517
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
518
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
519
|
-
}
|
|
520
|
-
else {
|
|
521
|
-
return this.send(command, optionsOrCb);
|
|
522
|
-
}
|
|
523
|
-
};
|
|
524
|
-
SES.prototype.getSendQuota = function (args, optionsOrCb, cb) {
|
|
525
|
-
var command = new GetSendQuotaCommand(args);
|
|
526
|
-
if (typeof optionsOrCb === "function") {
|
|
527
|
-
this.send(command, optionsOrCb);
|
|
528
|
-
}
|
|
529
|
-
else if (typeof cb === "function") {
|
|
530
|
-
if (typeof optionsOrCb !== "object")
|
|
531
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
532
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
533
|
-
}
|
|
534
|
-
else {
|
|
535
|
-
return this.send(command, optionsOrCb);
|
|
536
|
-
}
|
|
537
|
-
};
|
|
538
|
-
SES.prototype.getSendStatistics = function (args, optionsOrCb, cb) {
|
|
539
|
-
var command = new GetSendStatisticsCommand(args);
|
|
540
|
-
if (typeof optionsOrCb === "function") {
|
|
541
|
-
this.send(command, optionsOrCb);
|
|
542
|
-
}
|
|
543
|
-
else if (typeof cb === "function") {
|
|
544
|
-
if (typeof optionsOrCb !== "object")
|
|
545
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
546
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
547
|
-
}
|
|
548
|
-
else {
|
|
549
|
-
return this.send(command, optionsOrCb);
|
|
550
|
-
}
|
|
551
|
-
};
|
|
552
|
-
SES.prototype.getTemplate = function (args, optionsOrCb, cb) {
|
|
553
|
-
var command = new GetTemplateCommand(args);
|
|
554
|
-
if (typeof optionsOrCb === "function") {
|
|
555
|
-
this.send(command, optionsOrCb);
|
|
556
|
-
}
|
|
557
|
-
else if (typeof cb === "function") {
|
|
558
|
-
if (typeof optionsOrCb !== "object")
|
|
559
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
560
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
561
|
-
}
|
|
562
|
-
else {
|
|
563
|
-
return this.send(command, optionsOrCb);
|
|
564
|
-
}
|
|
565
|
-
};
|
|
566
|
-
SES.prototype.listConfigurationSets = function (args, optionsOrCb, cb) {
|
|
567
|
-
var command = new ListConfigurationSetsCommand(args);
|
|
568
|
-
if (typeof optionsOrCb === "function") {
|
|
569
|
-
this.send(command, optionsOrCb);
|
|
570
|
-
}
|
|
571
|
-
else if (typeof cb === "function") {
|
|
572
|
-
if (typeof optionsOrCb !== "object")
|
|
573
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
574
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
575
|
-
}
|
|
576
|
-
else {
|
|
577
|
-
return this.send(command, optionsOrCb);
|
|
578
|
-
}
|
|
579
|
-
};
|
|
580
|
-
SES.prototype.listCustomVerificationEmailTemplates = function (args, optionsOrCb, cb) {
|
|
581
|
-
var command = new ListCustomVerificationEmailTemplatesCommand(args);
|
|
582
|
-
if (typeof optionsOrCb === "function") {
|
|
583
|
-
this.send(command, optionsOrCb);
|
|
584
|
-
}
|
|
585
|
-
else if (typeof cb === "function") {
|
|
586
|
-
if (typeof optionsOrCb !== "object")
|
|
587
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
588
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
589
|
-
}
|
|
590
|
-
else {
|
|
591
|
-
return this.send(command, optionsOrCb);
|
|
592
|
-
}
|
|
593
|
-
};
|
|
594
|
-
SES.prototype.listIdentities = function (args, optionsOrCb, cb) {
|
|
595
|
-
var command = new ListIdentitiesCommand(args);
|
|
596
|
-
if (typeof optionsOrCb === "function") {
|
|
597
|
-
this.send(command, optionsOrCb);
|
|
598
|
-
}
|
|
599
|
-
else if (typeof cb === "function") {
|
|
600
|
-
if (typeof optionsOrCb !== "object")
|
|
601
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
602
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
603
|
-
}
|
|
604
|
-
else {
|
|
605
|
-
return this.send(command, optionsOrCb);
|
|
606
|
-
}
|
|
607
|
-
};
|
|
608
|
-
SES.prototype.listIdentityPolicies = function (args, optionsOrCb, cb) {
|
|
609
|
-
var command = new ListIdentityPoliciesCommand(args);
|
|
610
|
-
if (typeof optionsOrCb === "function") {
|
|
611
|
-
this.send(command, optionsOrCb);
|
|
612
|
-
}
|
|
613
|
-
else if (typeof cb === "function") {
|
|
614
|
-
if (typeof optionsOrCb !== "object")
|
|
615
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
616
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
617
|
-
}
|
|
618
|
-
else {
|
|
619
|
-
return this.send(command, optionsOrCb);
|
|
620
|
-
}
|
|
621
|
-
};
|
|
622
|
-
SES.prototype.listReceiptFilters = function (args, optionsOrCb, cb) {
|
|
623
|
-
var command = new ListReceiptFiltersCommand(args);
|
|
624
|
-
if (typeof optionsOrCb === "function") {
|
|
625
|
-
this.send(command, optionsOrCb);
|
|
626
|
-
}
|
|
627
|
-
else if (typeof cb === "function") {
|
|
628
|
-
if (typeof optionsOrCb !== "object")
|
|
629
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
630
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
631
|
-
}
|
|
632
|
-
else {
|
|
633
|
-
return this.send(command, optionsOrCb);
|
|
634
|
-
}
|
|
635
|
-
};
|
|
636
|
-
SES.prototype.listReceiptRuleSets = function (args, optionsOrCb, cb) {
|
|
637
|
-
var command = new ListReceiptRuleSetsCommand(args);
|
|
638
|
-
if (typeof optionsOrCb === "function") {
|
|
639
|
-
this.send(command, optionsOrCb);
|
|
640
|
-
}
|
|
641
|
-
else if (typeof cb === "function") {
|
|
642
|
-
if (typeof optionsOrCb !== "object")
|
|
643
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
644
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
645
|
-
}
|
|
646
|
-
else {
|
|
647
|
-
return this.send(command, optionsOrCb);
|
|
648
|
-
}
|
|
649
|
-
};
|
|
650
|
-
SES.prototype.listTemplates = function (args, optionsOrCb, cb) {
|
|
651
|
-
var command = new ListTemplatesCommand(args);
|
|
652
|
-
if (typeof optionsOrCb === "function") {
|
|
653
|
-
this.send(command, optionsOrCb);
|
|
654
|
-
}
|
|
655
|
-
else if (typeof cb === "function") {
|
|
656
|
-
if (typeof optionsOrCb !== "object")
|
|
657
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
658
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
659
|
-
}
|
|
660
|
-
else {
|
|
661
|
-
return this.send(command, optionsOrCb);
|
|
662
|
-
}
|
|
663
|
-
};
|
|
664
|
-
SES.prototype.listVerifiedEmailAddresses = function (args, optionsOrCb, cb) {
|
|
665
|
-
var command = new ListVerifiedEmailAddressesCommand(args);
|
|
666
|
-
if (typeof optionsOrCb === "function") {
|
|
667
|
-
this.send(command, optionsOrCb);
|
|
668
|
-
}
|
|
669
|
-
else if (typeof cb === "function") {
|
|
670
|
-
if (typeof optionsOrCb !== "object")
|
|
671
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
672
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
673
|
-
}
|
|
674
|
-
else {
|
|
675
|
-
return this.send(command, optionsOrCb);
|
|
676
|
-
}
|
|
677
|
-
};
|
|
678
|
-
SES.prototype.putConfigurationSetDeliveryOptions = function (args, optionsOrCb, cb) {
|
|
679
|
-
var command = new PutConfigurationSetDeliveryOptionsCommand(args);
|
|
680
|
-
if (typeof optionsOrCb === "function") {
|
|
681
|
-
this.send(command, optionsOrCb);
|
|
682
|
-
}
|
|
683
|
-
else if (typeof cb === "function") {
|
|
684
|
-
if (typeof optionsOrCb !== "object")
|
|
685
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
686
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
687
|
-
}
|
|
688
|
-
else {
|
|
689
|
-
return this.send(command, optionsOrCb);
|
|
690
|
-
}
|
|
691
|
-
};
|
|
692
|
-
SES.prototype.putIdentityPolicy = function (args, optionsOrCb, cb) {
|
|
693
|
-
var command = new PutIdentityPolicyCommand(args);
|
|
694
|
-
if (typeof optionsOrCb === "function") {
|
|
695
|
-
this.send(command, optionsOrCb);
|
|
696
|
-
}
|
|
697
|
-
else if (typeof cb === "function") {
|
|
698
|
-
if (typeof optionsOrCb !== "object")
|
|
699
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
700
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
701
|
-
}
|
|
702
|
-
else {
|
|
703
|
-
return this.send(command, optionsOrCb);
|
|
704
|
-
}
|
|
705
|
-
};
|
|
706
|
-
SES.prototype.reorderReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
707
|
-
var command = new ReorderReceiptRuleSetCommand(args);
|
|
708
|
-
if (typeof optionsOrCb === "function") {
|
|
709
|
-
this.send(command, optionsOrCb);
|
|
710
|
-
}
|
|
711
|
-
else if (typeof cb === "function") {
|
|
712
|
-
if (typeof optionsOrCb !== "object")
|
|
713
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
714
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
715
|
-
}
|
|
716
|
-
else {
|
|
717
|
-
return this.send(command, optionsOrCb);
|
|
718
|
-
}
|
|
719
|
-
};
|
|
720
|
-
SES.prototype.sendBounce = function (args, optionsOrCb, cb) {
|
|
721
|
-
var command = new SendBounceCommand(args);
|
|
722
|
-
if (typeof optionsOrCb === "function") {
|
|
723
|
-
this.send(command, optionsOrCb);
|
|
724
|
-
}
|
|
725
|
-
else if (typeof cb === "function") {
|
|
726
|
-
if (typeof optionsOrCb !== "object")
|
|
727
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
728
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
729
|
-
}
|
|
730
|
-
else {
|
|
731
|
-
return this.send(command, optionsOrCb);
|
|
732
|
-
}
|
|
733
|
-
};
|
|
734
|
-
SES.prototype.sendBulkTemplatedEmail = function (args, optionsOrCb, cb) {
|
|
735
|
-
var command = new SendBulkTemplatedEmailCommand(args);
|
|
736
|
-
if (typeof optionsOrCb === "function") {
|
|
737
|
-
this.send(command, optionsOrCb);
|
|
738
|
-
}
|
|
739
|
-
else if (typeof cb === "function") {
|
|
740
|
-
if (typeof optionsOrCb !== "object")
|
|
741
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
742
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
743
|
-
}
|
|
744
|
-
else {
|
|
745
|
-
return this.send(command, optionsOrCb);
|
|
746
|
-
}
|
|
747
|
-
};
|
|
748
|
-
SES.prototype.sendCustomVerificationEmail = function (args, optionsOrCb, cb) {
|
|
749
|
-
var command = new SendCustomVerificationEmailCommand(args);
|
|
750
|
-
if (typeof optionsOrCb === "function") {
|
|
751
|
-
this.send(command, optionsOrCb);
|
|
752
|
-
}
|
|
753
|
-
else if (typeof cb === "function") {
|
|
754
|
-
if (typeof optionsOrCb !== "object")
|
|
755
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
756
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
757
|
-
}
|
|
758
|
-
else {
|
|
759
|
-
return this.send(command, optionsOrCb);
|
|
760
|
-
}
|
|
761
|
-
};
|
|
762
|
-
SES.prototype.sendEmail = function (args, optionsOrCb, cb) {
|
|
763
|
-
var command = new SendEmailCommand(args);
|
|
764
|
-
if (typeof optionsOrCb === "function") {
|
|
765
|
-
this.send(command, optionsOrCb);
|
|
766
|
-
}
|
|
767
|
-
else if (typeof cb === "function") {
|
|
768
|
-
if (typeof optionsOrCb !== "object")
|
|
769
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
770
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
771
|
-
}
|
|
772
|
-
else {
|
|
773
|
-
return this.send(command, optionsOrCb);
|
|
774
|
-
}
|
|
775
|
-
};
|
|
776
|
-
SES.prototype.sendRawEmail = function (args, optionsOrCb, cb) {
|
|
777
|
-
var command = new SendRawEmailCommand(args);
|
|
778
|
-
if (typeof optionsOrCb === "function") {
|
|
779
|
-
this.send(command, optionsOrCb);
|
|
780
|
-
}
|
|
781
|
-
else if (typeof cb === "function") {
|
|
782
|
-
if (typeof optionsOrCb !== "object")
|
|
783
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
784
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
785
|
-
}
|
|
786
|
-
else {
|
|
787
|
-
return this.send(command, optionsOrCb);
|
|
788
|
-
}
|
|
789
|
-
};
|
|
790
|
-
SES.prototype.sendTemplatedEmail = function (args, optionsOrCb, cb) {
|
|
791
|
-
var command = new SendTemplatedEmailCommand(args);
|
|
792
|
-
if (typeof optionsOrCb === "function") {
|
|
793
|
-
this.send(command, optionsOrCb);
|
|
794
|
-
}
|
|
795
|
-
else if (typeof cb === "function") {
|
|
796
|
-
if (typeof optionsOrCb !== "object")
|
|
797
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
798
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
799
|
-
}
|
|
800
|
-
else {
|
|
801
|
-
return this.send(command, optionsOrCb);
|
|
802
|
-
}
|
|
803
|
-
};
|
|
804
|
-
SES.prototype.setActiveReceiptRuleSet = function (args, optionsOrCb, cb) {
|
|
805
|
-
var command = new SetActiveReceiptRuleSetCommand(args);
|
|
806
|
-
if (typeof optionsOrCb === "function") {
|
|
807
|
-
this.send(command, optionsOrCb);
|
|
808
|
-
}
|
|
809
|
-
else if (typeof cb === "function") {
|
|
810
|
-
if (typeof optionsOrCb !== "object")
|
|
811
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
812
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
813
|
-
}
|
|
814
|
-
else {
|
|
815
|
-
return this.send(command, optionsOrCb);
|
|
816
|
-
}
|
|
817
|
-
};
|
|
818
|
-
SES.prototype.setIdentityDkimEnabled = function (args, optionsOrCb, cb) {
|
|
819
|
-
var command = new SetIdentityDkimEnabledCommand(args);
|
|
820
|
-
if (typeof optionsOrCb === "function") {
|
|
821
|
-
this.send(command, optionsOrCb);
|
|
822
|
-
}
|
|
823
|
-
else if (typeof cb === "function") {
|
|
824
|
-
if (typeof optionsOrCb !== "object")
|
|
825
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
826
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
827
|
-
}
|
|
828
|
-
else {
|
|
829
|
-
return this.send(command, optionsOrCb);
|
|
830
|
-
}
|
|
831
|
-
};
|
|
832
|
-
SES.prototype.setIdentityFeedbackForwardingEnabled = function (args, optionsOrCb, cb) {
|
|
833
|
-
var command = new SetIdentityFeedbackForwardingEnabledCommand(args);
|
|
834
|
-
if (typeof optionsOrCb === "function") {
|
|
835
|
-
this.send(command, optionsOrCb);
|
|
836
|
-
}
|
|
837
|
-
else if (typeof cb === "function") {
|
|
838
|
-
if (typeof optionsOrCb !== "object")
|
|
839
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
840
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
841
|
-
}
|
|
842
|
-
else {
|
|
843
|
-
return this.send(command, optionsOrCb);
|
|
844
|
-
}
|
|
845
|
-
};
|
|
846
|
-
SES.prototype.setIdentityHeadersInNotificationsEnabled = function (args, optionsOrCb, cb) {
|
|
847
|
-
var command = new SetIdentityHeadersInNotificationsEnabledCommand(args);
|
|
848
|
-
if (typeof optionsOrCb === "function") {
|
|
849
|
-
this.send(command, optionsOrCb);
|
|
850
|
-
}
|
|
851
|
-
else if (typeof cb === "function") {
|
|
852
|
-
if (typeof optionsOrCb !== "object")
|
|
853
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
854
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
855
|
-
}
|
|
856
|
-
else {
|
|
857
|
-
return this.send(command, optionsOrCb);
|
|
858
|
-
}
|
|
859
|
-
};
|
|
860
|
-
SES.prototype.setIdentityMailFromDomain = function (args, optionsOrCb, cb) {
|
|
861
|
-
var command = new SetIdentityMailFromDomainCommand(args);
|
|
862
|
-
if (typeof optionsOrCb === "function") {
|
|
863
|
-
this.send(command, optionsOrCb);
|
|
864
|
-
}
|
|
865
|
-
else if (typeof cb === "function") {
|
|
866
|
-
if (typeof optionsOrCb !== "object")
|
|
867
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
868
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
869
|
-
}
|
|
870
|
-
else {
|
|
871
|
-
return this.send(command, optionsOrCb);
|
|
872
|
-
}
|
|
873
|
-
};
|
|
874
|
-
SES.prototype.setIdentityNotificationTopic = function (args, optionsOrCb, cb) {
|
|
875
|
-
var command = new SetIdentityNotificationTopicCommand(args);
|
|
876
|
-
if (typeof optionsOrCb === "function") {
|
|
877
|
-
this.send(command, optionsOrCb);
|
|
878
|
-
}
|
|
879
|
-
else if (typeof cb === "function") {
|
|
880
|
-
if (typeof optionsOrCb !== "object")
|
|
881
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
882
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
883
|
-
}
|
|
884
|
-
else {
|
|
885
|
-
return this.send(command, optionsOrCb);
|
|
886
|
-
}
|
|
887
|
-
};
|
|
888
|
-
SES.prototype.setReceiptRulePosition = function (args, optionsOrCb, cb) {
|
|
889
|
-
var command = new SetReceiptRulePositionCommand(args);
|
|
890
|
-
if (typeof optionsOrCb === "function") {
|
|
891
|
-
this.send(command, optionsOrCb);
|
|
892
|
-
}
|
|
893
|
-
else if (typeof cb === "function") {
|
|
894
|
-
if (typeof optionsOrCb !== "object")
|
|
895
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
896
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
897
|
-
}
|
|
898
|
-
else {
|
|
899
|
-
return this.send(command, optionsOrCb);
|
|
900
|
-
}
|
|
901
|
-
};
|
|
902
|
-
SES.prototype.testRenderTemplate = function (args, optionsOrCb, cb) {
|
|
903
|
-
var command = new TestRenderTemplateCommand(args);
|
|
904
|
-
if (typeof optionsOrCb === "function") {
|
|
905
|
-
this.send(command, optionsOrCb);
|
|
906
|
-
}
|
|
907
|
-
else if (typeof cb === "function") {
|
|
908
|
-
if (typeof optionsOrCb !== "object")
|
|
909
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
910
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
911
|
-
}
|
|
912
|
-
else {
|
|
913
|
-
return this.send(command, optionsOrCb);
|
|
914
|
-
}
|
|
915
|
-
};
|
|
916
|
-
SES.prototype.updateAccountSendingEnabled = function (args, optionsOrCb, cb) {
|
|
917
|
-
var command = new UpdateAccountSendingEnabledCommand(args);
|
|
918
|
-
if (typeof optionsOrCb === "function") {
|
|
919
|
-
this.send(command, optionsOrCb);
|
|
920
|
-
}
|
|
921
|
-
else if (typeof cb === "function") {
|
|
922
|
-
if (typeof optionsOrCb !== "object")
|
|
923
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
924
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
925
|
-
}
|
|
926
|
-
else {
|
|
927
|
-
return this.send(command, optionsOrCb);
|
|
928
|
-
}
|
|
929
|
-
};
|
|
930
|
-
SES.prototype.updateConfigurationSetEventDestination = function (args, optionsOrCb, cb) {
|
|
931
|
-
var command = new UpdateConfigurationSetEventDestinationCommand(args);
|
|
932
|
-
if (typeof optionsOrCb === "function") {
|
|
933
|
-
this.send(command, optionsOrCb);
|
|
934
|
-
}
|
|
935
|
-
else if (typeof cb === "function") {
|
|
936
|
-
if (typeof optionsOrCb !== "object")
|
|
937
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
938
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
939
|
-
}
|
|
940
|
-
else {
|
|
941
|
-
return this.send(command, optionsOrCb);
|
|
942
|
-
}
|
|
943
|
-
};
|
|
944
|
-
SES.prototype.updateConfigurationSetReputationMetricsEnabled = function (args, optionsOrCb, cb) {
|
|
945
|
-
var command = new UpdateConfigurationSetReputationMetricsEnabledCommand(args);
|
|
946
|
-
if (typeof optionsOrCb === "function") {
|
|
947
|
-
this.send(command, optionsOrCb);
|
|
948
|
-
}
|
|
949
|
-
else if (typeof cb === "function") {
|
|
950
|
-
if (typeof optionsOrCb !== "object")
|
|
951
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
952
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
953
|
-
}
|
|
954
|
-
else {
|
|
955
|
-
return this.send(command, optionsOrCb);
|
|
956
|
-
}
|
|
957
|
-
};
|
|
958
|
-
SES.prototype.updateConfigurationSetSendingEnabled = function (args, optionsOrCb, cb) {
|
|
959
|
-
var command = new UpdateConfigurationSetSendingEnabledCommand(args);
|
|
960
|
-
if (typeof optionsOrCb === "function") {
|
|
961
|
-
this.send(command, optionsOrCb);
|
|
962
|
-
}
|
|
963
|
-
else if (typeof cb === "function") {
|
|
964
|
-
if (typeof optionsOrCb !== "object")
|
|
965
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
966
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
967
|
-
}
|
|
968
|
-
else {
|
|
969
|
-
return this.send(command, optionsOrCb);
|
|
970
|
-
}
|
|
971
|
-
};
|
|
972
|
-
SES.prototype.updateConfigurationSetTrackingOptions = function (args, optionsOrCb, cb) {
|
|
973
|
-
var command = new UpdateConfigurationSetTrackingOptionsCommand(args);
|
|
974
|
-
if (typeof optionsOrCb === "function") {
|
|
975
|
-
this.send(command, optionsOrCb);
|
|
976
|
-
}
|
|
977
|
-
else if (typeof cb === "function") {
|
|
978
|
-
if (typeof optionsOrCb !== "object")
|
|
979
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
980
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
981
|
-
}
|
|
982
|
-
else {
|
|
983
|
-
return this.send(command, optionsOrCb);
|
|
984
|
-
}
|
|
985
|
-
};
|
|
986
|
-
SES.prototype.updateCustomVerificationEmailTemplate = function (args, optionsOrCb, cb) {
|
|
987
|
-
var command = new UpdateCustomVerificationEmailTemplateCommand(args);
|
|
988
|
-
if (typeof optionsOrCb === "function") {
|
|
989
|
-
this.send(command, optionsOrCb);
|
|
990
|
-
}
|
|
991
|
-
else if (typeof cb === "function") {
|
|
992
|
-
if (typeof optionsOrCb !== "object")
|
|
993
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
994
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
995
|
-
}
|
|
996
|
-
else {
|
|
997
|
-
return this.send(command, optionsOrCb);
|
|
998
|
-
}
|
|
999
|
-
};
|
|
1000
|
-
SES.prototype.updateReceiptRule = function (args, optionsOrCb, cb) {
|
|
1001
|
-
var command = new UpdateReceiptRuleCommand(args);
|
|
1002
|
-
if (typeof optionsOrCb === "function") {
|
|
1003
|
-
this.send(command, optionsOrCb);
|
|
1004
|
-
}
|
|
1005
|
-
else if (typeof cb === "function") {
|
|
1006
|
-
if (typeof optionsOrCb !== "object")
|
|
1007
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1008
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1009
|
-
}
|
|
1010
|
-
else {
|
|
1011
|
-
return this.send(command, optionsOrCb);
|
|
1012
|
-
}
|
|
1013
|
-
};
|
|
1014
|
-
SES.prototype.updateTemplate = function (args, optionsOrCb, cb) {
|
|
1015
|
-
var command = new UpdateTemplateCommand(args);
|
|
1016
|
-
if (typeof optionsOrCb === "function") {
|
|
1017
|
-
this.send(command, optionsOrCb);
|
|
1018
|
-
}
|
|
1019
|
-
else if (typeof cb === "function") {
|
|
1020
|
-
if (typeof optionsOrCb !== "object")
|
|
1021
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1022
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1023
|
-
}
|
|
1024
|
-
else {
|
|
1025
|
-
return this.send(command, optionsOrCb);
|
|
1026
|
-
}
|
|
1027
|
-
};
|
|
1028
|
-
SES.prototype.verifyDomainDkim = function (args, optionsOrCb, cb) {
|
|
1029
|
-
var command = new VerifyDomainDkimCommand(args);
|
|
1030
|
-
if (typeof optionsOrCb === "function") {
|
|
1031
|
-
this.send(command, optionsOrCb);
|
|
1032
|
-
}
|
|
1033
|
-
else if (typeof cb === "function") {
|
|
1034
|
-
if (typeof optionsOrCb !== "object")
|
|
1035
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1036
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1037
|
-
}
|
|
1038
|
-
else {
|
|
1039
|
-
return this.send(command, optionsOrCb);
|
|
1040
|
-
}
|
|
1041
|
-
};
|
|
1042
|
-
SES.prototype.verifyDomainIdentity = function (args, optionsOrCb, cb) {
|
|
1043
|
-
var command = new VerifyDomainIdentityCommand(args);
|
|
1044
|
-
if (typeof optionsOrCb === "function") {
|
|
1045
|
-
this.send(command, optionsOrCb);
|
|
1046
|
-
}
|
|
1047
|
-
else if (typeof cb === "function") {
|
|
1048
|
-
if (typeof optionsOrCb !== "object")
|
|
1049
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1050
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1051
|
-
}
|
|
1052
|
-
else {
|
|
1053
|
-
return this.send(command, optionsOrCb);
|
|
1054
|
-
}
|
|
1055
|
-
};
|
|
1056
|
-
SES.prototype.verifyEmailAddress = function (args, optionsOrCb, cb) {
|
|
1057
|
-
var command = new VerifyEmailAddressCommand(args);
|
|
1058
|
-
if (typeof optionsOrCb === "function") {
|
|
1059
|
-
this.send(command, optionsOrCb);
|
|
1060
|
-
}
|
|
1061
|
-
else if (typeof cb === "function") {
|
|
1062
|
-
if (typeof optionsOrCb !== "object")
|
|
1063
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1064
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1065
|
-
}
|
|
1066
|
-
else {
|
|
1067
|
-
return this.send(command, optionsOrCb);
|
|
1068
|
-
}
|
|
1069
|
-
};
|
|
1070
|
-
SES.prototype.verifyEmailIdentity = function (args, optionsOrCb, cb) {
|
|
1071
|
-
var command = new VerifyEmailIdentityCommand(args);
|
|
1072
|
-
if (typeof optionsOrCb === "function") {
|
|
1073
|
-
this.send(command, optionsOrCb);
|
|
1074
|
-
}
|
|
1075
|
-
else if (typeof cb === "function") {
|
|
1076
|
-
if (typeof optionsOrCb !== "object")
|
|
1077
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1078
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1079
|
-
}
|
|
1080
|
-
else {
|
|
1081
|
-
return this.send(command, optionsOrCb);
|
|
1082
|
-
}
|
|
1083
|
-
};
|
|
1084
|
-
return SES;
|
|
1085
|
-
}(SESClient));
|
|
1086
|
-
export { SES };
|
|
1087
|
-
//# sourceMappingURL=SES.js.map
|