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