@aws-sdk/client-ses 3.32.0 → 3.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -0
- package/dist-cjs/SES.js +1083 -0
- package/dist-cjs/SESClient.js +51 -0
- package/dist-cjs/commands/CloneReceiptRuleSetCommand.js +65 -0
- package/dist-cjs/commands/CreateConfigurationSetCommand.js +64 -0
- package/dist-cjs/commands/CreateConfigurationSetEventDestinationCommand.js +69 -0
- package/dist-cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js +64 -0
- package/dist-cjs/commands/CreateCustomVerificationEmailTemplateCommand.js +63 -0
- package/dist-cjs/commands/CreateReceiptFilterCommand.js +62 -0
- package/dist-cjs/commands/CreateReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/CreateReceiptRuleSetCommand.js +63 -0
- package/dist-cjs/commands/CreateTemplateCommand.js +63 -0
- package/dist-cjs/commands/DeleteConfigurationSetCommand.js +62 -0
- package/dist-cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +63 -0
- package/dist-cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js +69 -0
- package/dist-cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js +63 -0
- package/dist-cjs/commands/DeleteIdentityCommand.js +62 -0
- package/dist-cjs/commands/DeleteIdentityPolicyCommand.js +71 -0
- package/dist-cjs/commands/DeleteReceiptFilterCommand.js +63 -0
- package/dist-cjs/commands/DeleteReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/DeleteReceiptRuleSetCommand.js +66 -0
- package/dist-cjs/commands/DeleteTemplateCommand.js +61 -0
- package/dist-cjs/commands/DeleteVerifiedEmailAddressCommand.js +61 -0
- package/dist-cjs/commands/DescribeActiveReceiptRuleSetCommand.js +64 -0
- package/dist-cjs/commands/DescribeConfigurationSetCommand.js +63 -0
- package/dist-cjs/commands/DescribeReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/DescribeReceiptRuleSetCommand.js +62 -0
- package/dist-cjs/commands/GetAccountSendingEnabledCommand.js +61 -0
- package/dist-cjs/commands/GetCustomVerificationEmailTemplateCommand.js +64 -0
- package/dist-cjs/commands/GetIdentityDkimAttributesCommand.js +82 -0
- package/dist-cjs/commands/GetIdentityMailFromDomainAttributesCommand.js +63 -0
- package/dist-cjs/commands/GetIdentityNotificationAttributesCommand.js +65 -0
- package/dist-cjs/commands/GetIdentityPoliciesCommand.js +71 -0
- package/dist-cjs/commands/GetIdentityVerificationAttributesCommand.js +75 -0
- package/dist-cjs/commands/GetSendQuotaCommand.js +61 -0
- package/dist-cjs/commands/GetSendStatisticsCommand.js +63 -0
- package/dist-cjs/commands/GetTemplateCommand.js +62 -0
- package/dist-cjs/commands/ListConfigurationSetsCommand.js +69 -0
- package/dist-cjs/commands/ListCustomVerificationEmailTemplatesCommand.js +64 -0
- package/dist-cjs/commands/ListIdentitiesCommand.js +62 -0
- package/dist-cjs/commands/ListIdentityPoliciesCommand.js +71 -0
- package/dist-cjs/commands/ListReceiptFiltersCommand.js +64 -0
- package/dist-cjs/commands/ListReceiptRuleSetsCommand.js +65 -0
- package/dist-cjs/commands/ListTemplatesCommand.js +62 -0
- package/dist-cjs/commands/ListVerifiedEmailAddressesCommand.js +61 -0
- package/dist-cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js +60 -0
- package/dist-cjs/commands/PutIdentityPolicyCommand.js +70 -0
- package/dist-cjs/commands/ReorderReceiptRuleSetCommand.js +67 -0
- package/dist-cjs/commands/SendBounceCommand.js +68 -0
- package/dist-cjs/commands/SendBulkTemplatedEmailCommand.js +102 -0
- package/dist-cjs/commands/SendCustomVerificationEmailCommand.js +68 -0
- package/dist-cjs/commands/SendEmailCommand.js +104 -0
- package/dist-cjs/commands/SendRawEmailCommand.js +168 -0
- package/dist-cjs/commands/SendTemplatedEmailCommand.js +109 -0
- package/dist-cjs/commands/SetActiveReceiptRuleSetCommand.js +66 -0
- package/dist-cjs/commands/SetIdentityDkimEnabledCommand.js +72 -0
- package/dist-cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js +70 -0
- package/dist-cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +65 -0
- package/dist-cjs/commands/SetIdentityMailFromDomainCommand.js +69 -0
- package/dist-cjs/commands/SetIdentityNotificationTopicCommand.js +68 -0
- package/dist-cjs/commands/SetReceiptRulePositionCommand.js +63 -0
- package/dist-cjs/commands/TestRenderTemplateCommand.js +62 -0
- package/dist-cjs/commands/UpdateAccountSendingEnabledCommand.js +65 -0
- package/dist-cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +71 -0
- package/dist-cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +64 -0
- package/dist-cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js +65 -0
- package/dist-cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js +64 -0
- package/dist-cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js +63 -0
- package/dist-cjs/commands/UpdateReceiptRuleCommand.js +63 -0
- package/dist-cjs/commands/UpdateTemplateCommand.js +63 -0
- package/dist-cjs/commands/VerifyDomainDkimCommand.js +98 -0
- package/dist-cjs/commands/VerifyDomainIdentityCommand.js +66 -0
- package/dist-cjs/commands/VerifyEmailAddressCommand.js +61 -0
- package/dist-cjs/commands/VerifyEmailIdentityCommand.js +63 -0
- package/dist-cjs/endpoints.js +61 -0
- package/dist-cjs/index.js +81 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +1941 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js +45 -0
- package/dist-cjs/pagination/ListIdentitiesPaginator.js +45 -0
- package/dist-cjs/protocols/Aws_query.js +8205 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +46 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-cjs/waiters/waitForIdentityExists.js +52 -0
- package/dist-es/SES.js +1075 -0
- package/dist-es/SESClient.js +37 -0
- package/dist-es/commands/CloneReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/CreateConfigurationSetCommand.js +39 -0
- package/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +39 -0
- package/dist-es/commands/CreateConfigurationSetTrackingOptionsCommand.js +39 -0
- package/dist-es/commands/CreateCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/CreateReceiptFilterCommand.js +39 -0
- package/dist-es/commands/CreateReceiptRuleCommand.js +39 -0
- package/dist-es/commands/CreateReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/CreateTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteConfigurationSetCommand.js +39 -0
- package/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +39 -0
- package/dist-es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +39 -0
- package/dist-es/commands/DeleteCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteIdentityCommand.js +39 -0
- package/dist-es/commands/DeleteIdentityPolicyCommand.js +39 -0
- package/dist-es/commands/DeleteReceiptFilterCommand.js +39 -0
- package/dist-es/commands/DeleteReceiptRuleCommand.js +39 -0
- package/dist-es/commands/DeleteReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/DeleteTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteVerifiedEmailAddressCommand.js +39 -0
- package/dist-es/commands/DescribeActiveReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/DescribeConfigurationSetCommand.js +39 -0
- package/dist-es/commands/DescribeReceiptRuleCommand.js +39 -0
- package/dist-es/commands/DescribeReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/GetAccountSendingEnabledCommand.js +39 -0
- package/dist-es/commands/GetCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/GetIdentityDkimAttributesCommand.js +39 -0
- package/dist-es/commands/GetIdentityMailFromDomainAttributesCommand.js +39 -0
- package/dist-es/commands/GetIdentityNotificationAttributesCommand.js +39 -0
- package/dist-es/commands/GetIdentityPoliciesCommand.js +39 -0
- package/dist-es/commands/GetIdentityVerificationAttributesCommand.js +39 -0
- package/dist-es/commands/GetSendQuotaCommand.js +39 -0
- package/dist-es/commands/GetSendStatisticsCommand.js +39 -0
- package/dist-es/commands/GetTemplateCommand.js +39 -0
- package/dist-es/commands/ListConfigurationSetsCommand.js +39 -0
- package/dist-es/commands/ListCustomVerificationEmailTemplatesCommand.js +39 -0
- package/dist-es/commands/ListIdentitiesCommand.js +39 -0
- package/dist-es/commands/ListIdentityPoliciesCommand.js +39 -0
- package/dist-es/commands/ListReceiptFiltersCommand.js +39 -0
- package/dist-es/commands/ListReceiptRuleSetsCommand.js +39 -0
- package/dist-es/commands/ListTemplatesCommand.js +39 -0
- package/dist-es/commands/ListVerifiedEmailAddressesCommand.js +39 -0
- package/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +39 -0
- package/dist-es/commands/PutIdentityPolicyCommand.js +39 -0
- package/dist-es/commands/ReorderReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/SendBounceCommand.js +39 -0
- package/dist-es/commands/SendBulkTemplatedEmailCommand.js +39 -0
- package/dist-es/commands/SendCustomVerificationEmailCommand.js +39 -0
- package/dist-es/commands/SendEmailCommand.js +39 -0
- package/dist-es/commands/SendRawEmailCommand.js +39 -0
- package/dist-es/commands/SendTemplatedEmailCommand.js +39 -0
- package/dist-es/commands/SetActiveReceiptRuleSetCommand.js +39 -0
- package/dist-es/commands/SetIdentityDkimEnabledCommand.js +39 -0
- package/dist-es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +39 -0
- package/dist-es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +39 -0
- package/dist-es/commands/SetIdentityMailFromDomainCommand.js +39 -0
- package/dist-es/commands/SetIdentityNotificationTopicCommand.js +39 -0
- package/dist-es/commands/SetReceiptRulePositionCommand.js +39 -0
- package/dist-es/commands/TestRenderTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateAccountSendingEnabledCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetSendingEnabledCommand.js +39 -0
- package/dist-es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +39 -0
- package/dist-es/commands/UpdateCustomVerificationEmailTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateReceiptRuleCommand.js +39 -0
- package/dist-es/commands/UpdateTemplateCommand.js +39 -0
- package/dist-es/commands/VerifyDomainDkimCommand.js +39 -0
- package/dist-es/commands/VerifyDomainIdentityCommand.js +39 -0
- package/dist-es/commands/VerifyEmailAddressCommand.js +39 -0
- package/dist-es/commands/VerifyEmailIdentityCommand.js +39 -0
- package/dist-es/endpoints.js +57 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +910 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListCustomVerificationEmailTemplatesPaginator.js +74 -0
- package/dist-es/pagination/ListIdentitiesPaginator.js +74 -0
- package/dist-es/protocols/Aws_query.js +8685 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-es/waiters/waitForIdentityExists.js +69 -0
- package/dist-types/SES.d.ts +1126 -0
- package/dist-types/SESClient.d.ts +211 -0
- package/dist-types/commands/CloneReceiptRuleSetCommand.d.ts +40 -0
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +39 -0
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +44 -0
- package/dist-types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/commands/CreateReceiptFilterCommand.d.ts +37 -0
- package/dist-types/commands/CreateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/CreateReceiptRuleSetCommand.d.ts +38 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +38 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +37 -0
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +38 -0
- package/dist-types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +44 -0
- package/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/commands/DeleteIdentityCommand.d.ts +37 -0
- package/dist-types/commands/DeleteIdentityPolicyCommand.d.ts +46 -0
- package/dist-types/commands/DeleteReceiptFilterCommand.d.ts +38 -0
- package/dist-types/commands/DeleteReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/DeleteReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/commands/DeleteTemplateCommand.d.ts +36 -0
- package/dist-types/commands/DeleteVerifiedEmailAddressCommand.d.ts +36 -0
- package/dist-types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +39 -0
- package/dist-types/commands/DescribeConfigurationSetCommand.d.ts +38 -0
- package/dist-types/commands/DescribeReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/DescribeReceiptRuleSetCommand.d.ts +37 -0
- package/dist-types/commands/GetAccountSendingEnabledCommand.d.ts +36 -0
- package/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +39 -0
- package/dist-types/commands/GetIdentityDkimAttributesCommand.d.ts +57 -0
- package/dist-types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +38 -0
- package/dist-types/commands/GetIdentityNotificationAttributesCommand.d.ts +40 -0
- package/dist-types/commands/GetIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/commands/GetIdentityVerificationAttributesCommand.d.ts +50 -0
- package/dist-types/commands/GetSendQuotaCommand.d.ts +36 -0
- package/dist-types/commands/GetSendStatisticsCommand.d.ts +38 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +37 -0
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +44 -0
- package/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +39 -0
- package/dist-types/commands/ListIdentitiesCommand.d.ts +37 -0
- package/dist-types/commands/ListIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/commands/ListReceiptFiltersCommand.d.ts +39 -0
- package/dist-types/commands/ListReceiptRuleSetsCommand.d.ts +40 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +37 -0
- package/dist-types/commands/ListVerifiedEmailAddressesCommand.d.ts +36 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +35 -0
- package/dist-types/commands/PutIdentityPolicyCommand.d.ts +45 -0
- package/dist-types/commands/ReorderReceiptRuleSetCommand.d.ts +42 -0
- package/dist-types/commands/SendBounceCommand.d.ts +43 -0
- package/dist-types/commands/SendBulkTemplatedEmailCommand.d.ts +77 -0
- package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +43 -0
- package/dist-types/commands/SendEmailCommand.d.ts +79 -0
- package/dist-types/commands/SendRawEmailCommand.d.ts +143 -0
- package/dist-types/commands/SendTemplatedEmailCommand.d.ts +84 -0
- package/dist-types/commands/SetActiveReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/commands/SetIdentityDkimEnabledCommand.d.ts +47 -0
- package/dist-types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +45 -0
- package/dist-types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +40 -0
- package/dist-types/commands/SetIdentityMailFromDomainCommand.d.ts +44 -0
- package/dist-types/commands/SetIdentityNotificationTopicCommand.d.ts +43 -0
- package/dist-types/commands/SetReceiptRulePositionCommand.d.ts +38 -0
- package/dist-types/commands/TestRenderTemplateCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAccountSendingEnabledCommand.d.ts +40 -0
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +46 -0
- package/dist-types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +39 -0
- package/dist-types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +40 -0
- package/dist-types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/commands/UpdateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +38 -0
- package/dist-types/commands/VerifyDomainDkimCommand.d.ts +73 -0
- package/dist-types/commands/VerifyDomainIdentityCommand.d.ts +41 -0
- package/dist-types/commands/VerifyEmailAddressCommand.d.ts +36 -0
- package/dist-types/commands/VerifyEmailIdentityCommand.d.ts +38 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListIdentitiesPaginator.d.ts +4 -0
- package/dist-types/protocols/Aws_query.d.ts +215 -0
- package/dist-types/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/dist-types/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/SES.d.ts +1126 -0
- package/dist-types/ts3.4/SESClient.d.ts +211 -0
- package/dist-types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIdentityCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +57 -0
- package/dist-types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetSendQuotaCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetSendStatisticsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SendBounceCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +77 -0
- package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +79 -0
- package/dist-types/ts3.4/commands/SendRawEmailCommand.d.ts +143 -0
- package/dist-types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +84 -0
- package/dist-types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TestRenderTemplateCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +73 -0
- package/dist-types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +38 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListIdentitiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +215 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/waiters/waitForIdentityExists.d.ts +14 -0
- package/dist-types/waiters/waitForIdentityExists.d.ts +14 -0
- package/package.json +53 -50
- package/SES.ts +0 -3242
- package/SESClient.ts +0 -606
- package/commands/CloneReceiptRuleSetCommand.ts +0 -99
- package/commands/CreateConfigurationSetCommand.ts +0 -98
- package/commands/CreateConfigurationSetEventDestinationCommand.ts +0 -115
- package/commands/CreateConfigurationSetTrackingOptionsCommand.ts +0 -110
- package/commands/CreateCustomVerificationEmailTemplateCommand.ts +0 -104
- package/commands/CreateReceiptFilterCommand.ts +0 -96
- package/commands/CreateReceiptRuleCommand.ts +0 -97
- package/commands/CreateReceiptRuleSetCommand.ts +0 -97
- package/commands/CreateTemplateCommand.ts +0 -97
- package/commands/DeleteConfigurationSetCommand.ts +0 -96
- package/commands/DeleteConfigurationSetEventDestinationCommand.ts +0 -109
- package/commands/DeleteConfigurationSetTrackingOptionsCommand.ts +0 -115
- package/commands/DeleteCustomVerificationEmailTemplateCommand.ts +0 -104
- package/commands/DeleteIdentityCommand.ts +0 -96
- package/commands/DeleteIdentityPolicyCommand.ts +0 -105
- package/commands/DeleteReceiptFilterCommand.ts +0 -97
- package/commands/DeleteReceiptRuleCommand.ts +0 -97
- package/commands/DeleteReceiptRuleSetCommand.ts +0 -100
- package/commands/DeleteTemplateCommand.ts +0 -95
- package/commands/DeleteVerifiedEmailAddressCommand.ts +0 -98
- package/commands/DescribeActiveReceiptRuleSetCommand.ts +0 -103
- package/commands/DescribeConfigurationSetCommand.ts +0 -97
- package/commands/DescribeReceiptRuleCommand.ts +0 -97
- package/commands/DescribeReceiptRuleSetCommand.ts +0 -96
- package/commands/GetAccountSendingEnabledCommand.ts +0 -95
- package/commands/GetCustomVerificationEmailTemplateCommand.ts +0 -109
- package/commands/GetIdentityDkimAttributesCommand.ts +0 -119
- package/commands/GetIdentityMailFromDomainAttributesCommand.ts +0 -108
- package/commands/GetIdentityNotificationAttributesCommand.ts +0 -110
- package/commands/GetIdentityPoliciesCommand.ts +0 -105
- package/commands/GetIdentityVerificationAttributesCommand.ts +0 -120
- package/commands/GetSendQuotaCommand.ts +0 -92
- package/commands/GetSendStatisticsCommand.ts +0 -97
- package/commands/GetTemplateCommand.ts +0 -93
- package/commands/ListConfigurationSetsCommand.ts +0 -103
- package/commands/ListCustomVerificationEmailTemplatesCommand.ts +0 -109
- package/commands/ListIdentitiesCommand.ts +0 -96
- package/commands/ListIdentityPoliciesCommand.ts +0 -105
- package/commands/ListReceiptFiltersCommand.ts +0 -98
- package/commands/ListReceiptRuleSetsCommand.ts +0 -99
- package/commands/ListTemplatesCommand.ts +0 -96
- package/commands/ListVerifiedEmailAddressesCommand.ts +0 -98
- package/commands/PutConfigurationSetDeliveryOptionsCommand.ts +0 -105
- package/commands/PutIdentityPolicyCommand.ts +0 -104
- package/commands/ReorderReceiptRuleSetCommand.ts +0 -101
- package/commands/SendBounceCommand.ts +0 -99
- package/commands/SendBulkTemplatedEmailCommand.ts +0 -136
- package/commands/SendCustomVerificationEmailCommand.ts +0 -107
- package/commands/SendEmailCommand.ts +0 -131
- package/commands/SendRawEmailCommand.ts +0 -199
- package/commands/SendTemplatedEmailCommand.ts +0 -143
- package/commands/SetActiveReceiptRuleSetCommand.ts +0 -100
- package/commands/SetIdentityDkimEnabledCommand.ts +0 -106
- package/commands/SetIdentityFeedbackForwardingEnabledCommand.ts +0 -115
- package/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts +0 -114
- package/commands/SetIdentityMailFromDomainCommand.ts +0 -106
- package/commands/SetIdentityNotificationTopicCommand.ts +0 -107
- package/commands/SetReceiptRulePositionCommand.ts +0 -97
- package/commands/TestRenderTemplateCommand.ts +0 -96
- package/commands/UpdateAccountSendingEnabledCommand.ts +0 -102
- package/commands/UpdateConfigurationSetEventDestinationCommand.ts +0 -117
- package/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts +0 -108
- package/commands/UpdateConfigurationSetSendingEnabledCommand.ts +0 -105
- package/commands/UpdateConfigurationSetTrackingOptionsCommand.ts +0 -110
- package/commands/UpdateCustomVerificationEmailTemplateCommand.ts +0 -104
- package/commands/UpdateReceiptRuleCommand.ts +0 -97
- package/commands/UpdateTemplateCommand.ts +0 -97
- package/commands/VerifyDomainDkimCommand.ts +0 -132
- package/commands/VerifyDomainIdentityCommand.ts +0 -100
- package/commands/VerifyEmailAddressCommand.ts +0 -95
- package/commands/VerifyEmailIdentityCommand.ts +0 -97
- package/dist/cjs/SES.js +0 -1084
- package/dist/cjs/SES.js.map +0 -1
- package/dist/cjs/SESClient.js +0 -52
- package/dist/cjs/SESClient.js.map +0 -1
- package/dist/cjs/commands/CloneReceiptRuleSetCommand.js +0 -66
- package/dist/cjs/commands/CloneReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateConfigurationSetCommand.js +0 -65
- package/dist/cjs/commands/CreateConfigurationSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateConfigurationSetEventDestinationCommand.js +0 -70
- package/dist/cjs/commands/CreateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js +0 -65
- package/dist/cjs/commands/CreateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/CreateCustomVerificationEmailTemplateCommand.js +0 -64
- package/dist/cjs/commands/CreateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/CreateReceiptFilterCommand.js +0 -63
- package/dist/cjs/commands/CreateReceiptFilterCommand.js.map +0 -1
- package/dist/cjs/commands/CreateReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/CreateReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/CreateReceiptRuleSetCommand.js +0 -64
- package/dist/cjs/commands/CreateReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateTemplateCommand.js +0 -64
- package/dist/cjs/commands/CreateTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteConfigurationSetCommand.js +0 -63
- package/dist/cjs/commands/DeleteConfigurationSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +0 -64
- package/dist/cjs/commands/DeleteConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js +0 -70
- package/dist/cjs/commands/DeleteConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js +0 -64
- package/dist/cjs/commands/DeleteCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteIdentityCommand.js +0 -63
- package/dist/cjs/commands/DeleteIdentityCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteIdentityPolicyCommand.js +0 -72
- package/dist/cjs/commands/DeleteIdentityPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteReceiptFilterCommand.js +0 -64
- package/dist/cjs/commands/DeleteReceiptFilterCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/DeleteReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteReceiptRuleSetCommand.js +0 -67
- package/dist/cjs/commands/DeleteReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteTemplateCommand.js +0 -62
- package/dist/cjs/commands/DeleteTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteVerifiedEmailAddressCommand.js +0 -62
- package/dist/cjs/commands/DeleteVerifiedEmailAddressCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeActiveReceiptRuleSetCommand.js +0 -65
- package/dist/cjs/commands/DescribeActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeConfigurationSetCommand.js +0 -64
- package/dist/cjs/commands/DescribeConfigurationSetCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/DescribeReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DescribeReceiptRuleSetCommand.js +0 -63
- package/dist/cjs/commands/DescribeReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetAccountSendingEnabledCommand.js +0 -62
- package/dist/cjs/commands/GetAccountSendingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/GetCustomVerificationEmailTemplateCommand.js +0 -65
- package/dist/cjs/commands/GetCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityDkimAttributesCommand.js +0 -83
- package/dist/cjs/commands/GetIdentityDkimAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityMailFromDomainAttributesCommand.js +0 -64
- package/dist/cjs/commands/GetIdentityMailFromDomainAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityNotificationAttributesCommand.js +0 -66
- package/dist/cjs/commands/GetIdentityNotificationAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityPoliciesCommand.js +0 -72
- package/dist/cjs/commands/GetIdentityPoliciesCommand.js.map +0 -1
- package/dist/cjs/commands/GetIdentityVerificationAttributesCommand.js +0 -76
- package/dist/cjs/commands/GetIdentityVerificationAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetSendQuotaCommand.js +0 -62
- package/dist/cjs/commands/GetSendQuotaCommand.js.map +0 -1
- package/dist/cjs/commands/GetSendStatisticsCommand.js +0 -64
- package/dist/cjs/commands/GetSendStatisticsCommand.js.map +0 -1
- package/dist/cjs/commands/GetTemplateCommand.js +0 -63
- package/dist/cjs/commands/GetTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/ListConfigurationSetsCommand.js +0 -70
- package/dist/cjs/commands/ListConfigurationSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListCustomVerificationEmailTemplatesCommand.js +0 -65
- package/dist/cjs/commands/ListCustomVerificationEmailTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListIdentitiesCommand.js +0 -63
- package/dist/cjs/commands/ListIdentitiesCommand.js.map +0 -1
- package/dist/cjs/commands/ListIdentityPoliciesCommand.js +0 -72
- package/dist/cjs/commands/ListIdentityPoliciesCommand.js.map +0 -1
- package/dist/cjs/commands/ListReceiptFiltersCommand.js +0 -65
- package/dist/cjs/commands/ListReceiptFiltersCommand.js.map +0 -1
- package/dist/cjs/commands/ListReceiptRuleSetsCommand.js +0 -66
- package/dist/cjs/commands/ListReceiptRuleSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListTemplatesCommand.js +0 -63
- package/dist/cjs/commands/ListTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListVerifiedEmailAddressesCommand.js +0 -62
- package/dist/cjs/commands/ListVerifiedEmailAddressesCommand.js.map +0 -1
- package/dist/cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js +0 -61
- package/dist/cjs/commands/PutConfigurationSetDeliveryOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/PutIdentityPolicyCommand.js +0 -71
- package/dist/cjs/commands/PutIdentityPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/ReorderReceiptRuleSetCommand.js +0 -68
- package/dist/cjs/commands/ReorderReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/SendBounceCommand.js +0 -69
- package/dist/cjs/commands/SendBounceCommand.js.map +0 -1
- package/dist/cjs/commands/SendBulkTemplatedEmailCommand.js +0 -103
- package/dist/cjs/commands/SendBulkTemplatedEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendCustomVerificationEmailCommand.js +0 -69
- package/dist/cjs/commands/SendCustomVerificationEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendEmailCommand.js +0 -105
- package/dist/cjs/commands/SendEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendRawEmailCommand.js +0 -169
- package/dist/cjs/commands/SendRawEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SendTemplatedEmailCommand.js +0 -110
- package/dist/cjs/commands/SendTemplatedEmailCommand.js.map +0 -1
- package/dist/cjs/commands/SetActiveReceiptRuleSetCommand.js +0 -67
- package/dist/cjs/commands/SetActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityDkimEnabledCommand.js +0 -73
- package/dist/cjs/commands/SetIdentityDkimEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js +0 -71
- package/dist/cjs/commands/SetIdentityFeedbackForwardingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +0 -66
- package/dist/cjs/commands/SetIdentityHeadersInNotificationsEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityMailFromDomainCommand.js +0 -70
- package/dist/cjs/commands/SetIdentityMailFromDomainCommand.js.map +0 -1
- package/dist/cjs/commands/SetIdentityNotificationTopicCommand.js +0 -69
- package/dist/cjs/commands/SetIdentityNotificationTopicCommand.js.map +0 -1
- package/dist/cjs/commands/SetReceiptRulePositionCommand.js +0 -64
- package/dist/cjs/commands/SetReceiptRulePositionCommand.js.map +0 -1
- package/dist/cjs/commands/TestRenderTemplateCommand.js +0 -63
- package/dist/cjs/commands/TestRenderTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateAccountSendingEnabledCommand.js +0 -66
- package/dist/cjs/commands/UpdateAccountSendingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +0 -72
- package/dist/cjs/commands/UpdateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +0 -65
- package/dist/cjs/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js +0 -66
- package/dist/cjs/commands/UpdateConfigurationSetSendingEnabledCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js +0 -65
- package/dist/cjs/commands/UpdateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js +0 -64
- package/dist/cjs/commands/UpdateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateReceiptRuleCommand.js +0 -64
- package/dist/cjs/commands/UpdateReceiptRuleCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateTemplateCommand.js +0 -64
- package/dist/cjs/commands/UpdateTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyDomainDkimCommand.js +0 -99
- package/dist/cjs/commands/VerifyDomainDkimCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyDomainIdentityCommand.js +0 -67
- package/dist/cjs/commands/VerifyDomainIdentityCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyEmailAddressCommand.js +0 -62
- package/dist/cjs/commands/VerifyEmailAddressCommand.js.map +0 -1
- package/dist/cjs/commands/VerifyEmailIdentityCommand.js +0 -64
- package/dist/cjs/commands/VerifyEmailIdentityCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -62
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -82
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -1942
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -94
- package/dist/cjs/pagination/Interfaces.js +0 -3
- package/dist/cjs/pagination/Interfaces.js.map +0 -1
- package/dist/cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js +0 -46
- package/dist/cjs/pagination/ListCustomVerificationEmailTemplatesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListIdentitiesPaginator.js +0 -46
- package/dist/cjs/pagination/ListIdentitiesPaginator.js.map +0 -1
- package/dist/cjs/protocols/Aws_query.js +0 -8206
- package/dist/cjs/protocols/Aws_query.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/cjs/waiters/waitForIdentityExists.js +0 -53
- package/dist/cjs/waiters/waitForIdentityExists.js.map +0 -1
- package/dist/es/SES.js +0 -1087
- package/dist/es/SES.js.map +0 -1
- package/dist/es/SESClient.js +0 -54
- package/dist/es/SESClient.js.map +0 -1
- package/dist/es/commands/CloneReceiptRuleSetCommand.js +0 -70
- package/dist/es/commands/CloneReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/CreateConfigurationSetCommand.js +0 -69
- package/dist/es/commands/CreateConfigurationSetCommand.js.map +0 -1
- package/dist/es/commands/CreateConfigurationSetEventDestinationCommand.js +0 -74
- package/dist/es/commands/CreateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/es/commands/CreateConfigurationSetTrackingOptionsCommand.js +0 -69
- package/dist/es/commands/CreateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/es/commands/CreateCustomVerificationEmailTemplateCommand.js +0 -68
- package/dist/es/commands/CreateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/CreateReceiptFilterCommand.js +0 -67
- package/dist/es/commands/CreateReceiptFilterCommand.js.map +0 -1
- package/dist/es/commands/CreateReceiptRuleCommand.js +0 -68
- package/dist/es/commands/CreateReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/CreateReceiptRuleSetCommand.js +0 -68
- package/dist/es/commands/CreateReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/CreateTemplateCommand.js +0 -68
- package/dist/es/commands/CreateTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteConfigurationSetCommand.js +0 -67
- package/dist/es/commands/DeleteConfigurationSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteConfigurationSetEventDestinationCommand.js +0 -68
- package/dist/es/commands/DeleteConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +0 -74
- package/dist/es/commands/DeleteConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/es/commands/DeleteCustomVerificationEmailTemplateCommand.js +0 -68
- package/dist/es/commands/DeleteCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteIdentityCommand.js +0 -67
- package/dist/es/commands/DeleteIdentityCommand.js.map +0 -1
- package/dist/es/commands/DeleteIdentityPolicyCommand.js +0 -76
- package/dist/es/commands/DeleteIdentityPolicyCommand.js.map +0 -1
- package/dist/es/commands/DeleteReceiptFilterCommand.js +0 -68
- package/dist/es/commands/DeleteReceiptFilterCommand.js.map +0 -1
- package/dist/es/commands/DeleteReceiptRuleCommand.js +0 -68
- package/dist/es/commands/DeleteReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/DeleteReceiptRuleSetCommand.js +0 -71
- package/dist/es/commands/DeleteReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteTemplateCommand.js +0 -66
- package/dist/es/commands/DeleteTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteVerifiedEmailAddressCommand.js +0 -66
- package/dist/es/commands/DeleteVerifiedEmailAddressCommand.js.map +0 -1
- package/dist/es/commands/DescribeActiveReceiptRuleSetCommand.js +0 -69
- package/dist/es/commands/DescribeActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/DescribeConfigurationSetCommand.js +0 -68
- package/dist/es/commands/DescribeConfigurationSetCommand.js.map +0 -1
- package/dist/es/commands/DescribeReceiptRuleCommand.js +0 -68
- package/dist/es/commands/DescribeReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/DescribeReceiptRuleSetCommand.js +0 -67
- package/dist/es/commands/DescribeReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/GetAccountSendingEnabledCommand.js +0 -66
- package/dist/es/commands/GetAccountSendingEnabledCommand.js.map +0 -1
- package/dist/es/commands/GetCustomVerificationEmailTemplateCommand.js +0 -69
- package/dist/es/commands/GetCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityDkimAttributesCommand.js +0 -87
- package/dist/es/commands/GetIdentityDkimAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityMailFromDomainAttributesCommand.js +0 -68
- package/dist/es/commands/GetIdentityMailFromDomainAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityNotificationAttributesCommand.js +0 -70
- package/dist/es/commands/GetIdentityNotificationAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityPoliciesCommand.js +0 -76
- package/dist/es/commands/GetIdentityPoliciesCommand.js.map +0 -1
- package/dist/es/commands/GetIdentityVerificationAttributesCommand.js +0 -80
- package/dist/es/commands/GetIdentityVerificationAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetSendQuotaCommand.js +0 -66
- package/dist/es/commands/GetSendQuotaCommand.js.map +0 -1
- package/dist/es/commands/GetSendStatisticsCommand.js +0 -68
- package/dist/es/commands/GetSendStatisticsCommand.js.map +0 -1
- package/dist/es/commands/GetTemplateCommand.js +0 -67
- package/dist/es/commands/GetTemplateCommand.js.map +0 -1
- package/dist/es/commands/ListConfigurationSetsCommand.js +0 -74
- package/dist/es/commands/ListConfigurationSetsCommand.js.map +0 -1
- package/dist/es/commands/ListCustomVerificationEmailTemplatesCommand.js +0 -69
- package/dist/es/commands/ListCustomVerificationEmailTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListIdentitiesCommand.js +0 -67
- package/dist/es/commands/ListIdentitiesCommand.js.map +0 -1
- package/dist/es/commands/ListIdentityPoliciesCommand.js +0 -76
- package/dist/es/commands/ListIdentityPoliciesCommand.js.map +0 -1
- package/dist/es/commands/ListReceiptFiltersCommand.js +0 -69
- package/dist/es/commands/ListReceiptFiltersCommand.js.map +0 -1
- package/dist/es/commands/ListReceiptRuleSetsCommand.js +0 -70
- package/dist/es/commands/ListReceiptRuleSetsCommand.js.map +0 -1
- package/dist/es/commands/ListTemplatesCommand.js +0 -67
- package/dist/es/commands/ListTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListVerifiedEmailAddressesCommand.js +0 -66
- package/dist/es/commands/ListVerifiedEmailAddressesCommand.js.map +0 -1
- package/dist/es/commands/PutConfigurationSetDeliveryOptionsCommand.js +0 -65
- package/dist/es/commands/PutConfigurationSetDeliveryOptionsCommand.js.map +0 -1
- package/dist/es/commands/PutIdentityPolicyCommand.js +0 -75
- package/dist/es/commands/PutIdentityPolicyCommand.js.map +0 -1
- package/dist/es/commands/ReorderReceiptRuleSetCommand.js +0 -72
- package/dist/es/commands/ReorderReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/SendBounceCommand.js +0 -73
- package/dist/es/commands/SendBounceCommand.js.map +0 -1
- package/dist/es/commands/SendBulkTemplatedEmailCommand.js +0 -107
- package/dist/es/commands/SendBulkTemplatedEmailCommand.js.map +0 -1
- package/dist/es/commands/SendCustomVerificationEmailCommand.js +0 -73
- package/dist/es/commands/SendCustomVerificationEmailCommand.js.map +0 -1
- package/dist/es/commands/SendEmailCommand.js +0 -109
- package/dist/es/commands/SendEmailCommand.js.map +0 -1
- package/dist/es/commands/SendRawEmailCommand.js +0 -173
- package/dist/es/commands/SendRawEmailCommand.js.map +0 -1
- package/dist/es/commands/SendTemplatedEmailCommand.js +0 -114
- package/dist/es/commands/SendTemplatedEmailCommand.js.map +0 -1
- package/dist/es/commands/SetActiveReceiptRuleSetCommand.js +0 -71
- package/dist/es/commands/SetActiveReceiptRuleSetCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityDkimEnabledCommand.js +0 -77
- package/dist/es/commands/SetIdentityDkimEnabledCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +0 -75
- package/dist/es/commands/SetIdentityFeedbackForwardingEnabledCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +0 -70
- package/dist/es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityMailFromDomainCommand.js +0 -74
- package/dist/es/commands/SetIdentityMailFromDomainCommand.js.map +0 -1
- package/dist/es/commands/SetIdentityNotificationTopicCommand.js +0 -73
- package/dist/es/commands/SetIdentityNotificationTopicCommand.js.map +0 -1
- package/dist/es/commands/SetReceiptRulePositionCommand.js +0 -68
- package/dist/es/commands/SetReceiptRulePositionCommand.js.map +0 -1
- package/dist/es/commands/TestRenderTemplateCommand.js +0 -67
- package/dist/es/commands/TestRenderTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateAccountSendingEnabledCommand.js +0 -70
- package/dist/es/commands/UpdateAccountSendingEnabledCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetEventDestinationCommand.js +0 -76
- package/dist/es/commands/UpdateConfigurationSetEventDestinationCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +0 -69
- package/dist/es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetSendingEnabledCommand.js +0 -70
- package/dist/es/commands/UpdateConfigurationSetSendingEnabledCommand.js.map +0 -1
- package/dist/es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +0 -69
- package/dist/es/commands/UpdateConfigurationSetTrackingOptionsCommand.js.map +0 -1
- package/dist/es/commands/UpdateCustomVerificationEmailTemplateCommand.js +0 -68
- package/dist/es/commands/UpdateCustomVerificationEmailTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateReceiptRuleCommand.js +0 -68
- package/dist/es/commands/UpdateReceiptRuleCommand.js.map +0 -1
- package/dist/es/commands/UpdateTemplateCommand.js +0 -68
- package/dist/es/commands/UpdateTemplateCommand.js.map +0 -1
- package/dist/es/commands/VerifyDomainDkimCommand.js +0 -103
- package/dist/es/commands/VerifyDomainDkimCommand.js.map +0 -1
- package/dist/es/commands/VerifyDomainIdentityCommand.js +0 -71
- package/dist/es/commands/VerifyDomainIdentityCommand.js.map +0 -1
- package/dist/es/commands/VerifyEmailAddressCommand.js +0 -66
- package/dist/es/commands/VerifyEmailAddressCommand.js.map +0 -1
- package/dist/es/commands/VerifyEmailIdentityCommand.js +0 -68
- package/dist/es/commands/VerifyEmailIdentityCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -58
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -79
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -1526
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -94
- package/dist/es/pagination/Interfaces.js +0 -2
- package/dist/es/pagination/Interfaces.js.map +0 -1
- package/dist/es/pagination/ListCustomVerificationEmailTemplatesPaginator.js +0 -87
- package/dist/es/pagination/ListCustomVerificationEmailTemplatesPaginator.js.map +0 -1
- package/dist/es/pagination/ListIdentitiesPaginator.js +0 -87
- package/dist/es/pagination/ListIdentitiesPaginator.js.map +0 -1
- package/dist/es/protocols/Aws_query.js +0 -8688
- package/dist/es/protocols/Aws_query.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -20
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -25
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -12
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -17
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/es/waiters/waitForIdentityExists.js +0 -79
- package/dist/es/waiters/waitForIdentityExists.js.map +0 -1
- package/dist/types/SES.d.ts +0 -1126
- package/dist/types/SESClient.d.ts +0 -211
- package/dist/types/commands/CloneReceiptRuleSetCommand.d.ts +0 -40
- package/dist/types/commands/CreateConfigurationSetCommand.d.ts +0 -39
- package/dist/types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +0 -44
- package/dist/types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/commands/CreateReceiptFilterCommand.d.ts +0 -37
- package/dist/types/commands/CreateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/CreateReceiptRuleSetCommand.d.ts +0 -38
- package/dist/types/commands/CreateTemplateCommand.d.ts +0 -38
- package/dist/types/commands/DeleteConfigurationSetCommand.d.ts +0 -37
- package/dist/types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +0 -38
- package/dist/types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +0 -44
- package/dist/types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/commands/DeleteIdentityCommand.d.ts +0 -37
- package/dist/types/commands/DeleteIdentityPolicyCommand.d.ts +0 -46
- package/dist/types/commands/DeleteReceiptFilterCommand.d.ts +0 -38
- package/dist/types/commands/DeleteReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/DeleteReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/commands/DeleteTemplateCommand.d.ts +0 -36
- package/dist/types/commands/DeleteVerifiedEmailAddressCommand.d.ts +0 -36
- package/dist/types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +0 -39
- package/dist/types/commands/DescribeConfigurationSetCommand.d.ts +0 -38
- package/dist/types/commands/DescribeReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/DescribeReceiptRuleSetCommand.d.ts +0 -37
- package/dist/types/commands/GetAccountSendingEnabledCommand.d.ts +0 -36
- package/dist/types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +0 -39
- package/dist/types/commands/GetIdentityDkimAttributesCommand.d.ts +0 -57
- package/dist/types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +0 -38
- package/dist/types/commands/GetIdentityNotificationAttributesCommand.d.ts +0 -40
- package/dist/types/commands/GetIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/commands/GetIdentityVerificationAttributesCommand.d.ts +0 -50
- package/dist/types/commands/GetSendQuotaCommand.d.ts +0 -36
- package/dist/types/commands/GetSendStatisticsCommand.d.ts +0 -38
- package/dist/types/commands/GetTemplateCommand.d.ts +0 -37
- package/dist/types/commands/ListConfigurationSetsCommand.d.ts +0 -44
- package/dist/types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +0 -39
- package/dist/types/commands/ListIdentitiesCommand.d.ts +0 -37
- package/dist/types/commands/ListIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/commands/ListReceiptFiltersCommand.d.ts +0 -39
- package/dist/types/commands/ListReceiptRuleSetsCommand.d.ts +0 -40
- package/dist/types/commands/ListTemplatesCommand.d.ts +0 -37
- package/dist/types/commands/ListVerifiedEmailAddressesCommand.d.ts +0 -36
- package/dist/types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +0 -35
- package/dist/types/commands/PutIdentityPolicyCommand.d.ts +0 -45
- package/dist/types/commands/ReorderReceiptRuleSetCommand.d.ts +0 -42
- package/dist/types/commands/SendBounceCommand.d.ts +0 -43
- package/dist/types/commands/SendBulkTemplatedEmailCommand.d.ts +0 -77
- package/dist/types/commands/SendCustomVerificationEmailCommand.d.ts +0 -43
- package/dist/types/commands/SendEmailCommand.d.ts +0 -79
- package/dist/types/commands/SendRawEmailCommand.d.ts +0 -143
- package/dist/types/commands/SendTemplatedEmailCommand.d.ts +0 -84
- package/dist/types/commands/SetActiveReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/commands/SetIdentityDkimEnabledCommand.d.ts +0 -47
- package/dist/types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +0 -45
- package/dist/types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +0 -40
- package/dist/types/commands/SetIdentityMailFromDomainCommand.d.ts +0 -44
- package/dist/types/commands/SetIdentityNotificationTopicCommand.d.ts +0 -43
- package/dist/types/commands/SetReceiptRulePositionCommand.d.ts +0 -38
- package/dist/types/commands/TestRenderTemplateCommand.d.ts +0 -37
- package/dist/types/commands/UpdateAccountSendingEnabledCommand.d.ts +0 -40
- package/dist/types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +0 -46
- package/dist/types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +0 -39
- package/dist/types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +0 -40
- package/dist/types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/commands/UpdateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/commands/UpdateTemplateCommand.d.ts +0 -38
- package/dist/types/commands/VerifyDomainDkimCommand.d.ts +0 -73
- package/dist/types/commands/VerifyDomainIdentityCommand.d.ts +0 -41
- package/dist/types/commands/VerifyEmailAddressCommand.d.ts +0 -36
- package/dist/types/commands/VerifyEmailIdentityCommand.d.ts +0 -38
- package/dist/types/pagination/Interfaces.d.ts +0 -6
- package/dist/types/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListIdentitiesPaginator.d.ts +0 -4
- package/dist/types/protocols/Aws_query.d.ts +0 -215
- package/dist/types/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/runtimeConfig.d.ts +0 -36
- package/dist/types/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/SES.d.ts +0 -1126
- package/dist/types/ts3.4/SESClient.d.ts +0 -211
- package/dist/types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteIdentityCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/DeleteTemplateCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +0 -57
- package/dist/types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +0 -50
- package/dist/types/ts3.4/commands/GetSendQuotaCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetSendStatisticsCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/GetTemplateCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/ListIdentitiesCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/ListTemplatesCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +0 -42
- package/dist/types/ts3.4/commands/SendBounceCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +0 -77
- package/dist/types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/SendEmailCommand.d.ts +0 -79
- package/dist/types/ts3.4/commands/SendRawEmailCommand.d.ts +0 -143
- package/dist/types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +0 -84
- package/dist/types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +0 -47
- package/dist/types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/TestRenderTemplateCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/UpdateTemplateCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +0 -38
- package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist/types/ts3.4/pagination/ListCustomVerificationEmailTemplatesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListIdentitiesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/protocols/Aws_query.d.ts +0 -215
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/waiters/waitForIdentityExists.d.ts +0 -14
- package/dist/types/waiters/waitForIdentityExists.d.ts +0 -14
- package/endpoints.ts +0 -62
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -5983
- package/pagination/Interfaces.ts +0 -7
- package/pagination/ListCustomVerificationEmailTemplatesPaginator.ts +0 -58
- package/pagination/ListIdentitiesPaginator.ts +0 -58
- package/protocols/Aws_query.ts +0 -10354
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -12
- package/tsconfig.json +0 -32
- package/waiters/waitForIdentityExists.ts +0 -59
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutConfigurationSetDeliveryOptionsCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Adds or updates the delivery options for a configuration set.</p>
|
|
10
|
-
* @example
|
|
11
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
-
* ```javascript
|
|
13
|
-
* import { SESClient, PutConfigurationSetDeliveryOptionsCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
14
|
-
* // const { SESClient, PutConfigurationSetDeliveryOptionsCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
15
|
-
* const client = new SESClient(config);
|
|
16
|
-
* const command = new PutConfigurationSetDeliveryOptionsCommand(input);
|
|
17
|
-
* const response = await client.send(command);
|
|
18
|
-
* ```
|
|
19
|
-
*
|
|
20
|
-
* @see {@link PutConfigurationSetDeliveryOptionsCommandInput} for command's `input` shape.
|
|
21
|
-
* @see {@link PutConfigurationSetDeliveryOptionsCommandOutput} for command's `response` shape.
|
|
22
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
-
*
|
|
24
|
-
*/
|
|
25
|
-
class PutConfigurationSetDeliveryOptionsCommand extends smithy_client_1.Command {
|
|
26
|
-
// Start section: command_properties
|
|
27
|
-
// End section: command_properties
|
|
28
|
-
constructor(input) {
|
|
29
|
-
// Start section: command_constructor
|
|
30
|
-
super();
|
|
31
|
-
this.input = input;
|
|
32
|
-
// End section: command_constructor
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* @internal
|
|
36
|
-
*/
|
|
37
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
-
const { logger } = configuration;
|
|
41
|
-
const clientName = "SESClient";
|
|
42
|
-
const commandName = "PutConfigurationSetDeliveryOptionsCommand";
|
|
43
|
-
const handlerExecutionContext = {
|
|
44
|
-
logger,
|
|
45
|
-
clientName,
|
|
46
|
-
commandName,
|
|
47
|
-
inputFilterSensitiveLog: models_0_1.PutConfigurationSetDeliveryOptionsRequest.filterSensitiveLog,
|
|
48
|
-
outputFilterSensitiveLog: models_0_1.PutConfigurationSetDeliveryOptionsResponse.filterSensitiveLog,
|
|
49
|
-
};
|
|
50
|
-
const { requestHandler } = configuration;
|
|
51
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
-
}
|
|
53
|
-
serialize(input, context) {
|
|
54
|
-
return Aws_query_1.serializeAws_queryPutConfigurationSetDeliveryOptionsCommand(input, context);
|
|
55
|
-
}
|
|
56
|
-
deserialize(output, context) {
|
|
57
|
-
return Aws_query_1.deserializeAws_queryPutConfigurationSetDeliveryOptionsCommand(output, context);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
exports.PutConfigurationSetDeliveryOptionsCommand = PutConfigurationSetDeliveryOptionsCommand;
|
|
61
|
-
//# sourceMappingURL=PutConfigurationSetDeliveryOptionsCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PutConfigurationSetDeliveryOptionsCommand.js","sourceRoot":"","sources":["../../../commands/PutConfigurationSetDeliveryOptionsCommand.ts"],"names":[],"mappings":";;;AACA,iDAG4B;AAC5B,sDAGgC;AAChC,gEAA2D;AAE3D,0DAA6D;AAgB7D;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,yCAA0C,SAAQ,uBAI9D;IACC,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAAqD;QACxE,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAAgD;QAGxE,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,2CAA2C,CAAC;QAChE,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,oDAAyC,CAAC,kBAAkB;YACrF,wBAAwB,EAAE,qDAA0C,CAAC,kBAAkB;SACxF,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CACf,KAAqD,EACrD,OAAuB;QAEvB,OAAO,uEAA2D,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACrF,CAAC;IAEO,WAAW,CACjB,MAAsB,EACtB,OAAuB;QAEvB,OAAO,yEAA6D,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACxF,CAAC;CAIF;AA5DD,8FA4DC"}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutIdentityPolicyCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Adds or updates a sending authorization policy for the specified identity (an email
|
|
10
|
-
* address or a domain).</p>
|
|
11
|
-
* <note>
|
|
12
|
-
* <p>This API is for the identity owner only. If you have not verified the identity,
|
|
13
|
-
* this API will return an error.</p>
|
|
14
|
-
* </note>
|
|
15
|
-
* <p>Sending authorization is a feature that enables an identity owner to authorize other
|
|
16
|
-
* senders to use its identities. For information about using sending authorization, see
|
|
17
|
-
* the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html">Amazon SES Developer
|
|
18
|
-
* Guide</a>.</p>
|
|
19
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
20
|
-
* @example
|
|
21
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
22
|
-
* ```javascript
|
|
23
|
-
* import { SESClient, PutIdentityPolicyCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
24
|
-
* // const { SESClient, PutIdentityPolicyCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
25
|
-
* const client = new SESClient(config);
|
|
26
|
-
* const command = new PutIdentityPolicyCommand(input);
|
|
27
|
-
* const response = await client.send(command);
|
|
28
|
-
* ```
|
|
29
|
-
*
|
|
30
|
-
* @see {@link PutIdentityPolicyCommandInput} for command's `input` shape.
|
|
31
|
-
* @see {@link PutIdentityPolicyCommandOutput} for command's `response` shape.
|
|
32
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
33
|
-
*
|
|
34
|
-
*/
|
|
35
|
-
class PutIdentityPolicyCommand extends smithy_client_1.Command {
|
|
36
|
-
// Start section: command_properties
|
|
37
|
-
// End section: command_properties
|
|
38
|
-
constructor(input) {
|
|
39
|
-
// Start section: command_constructor
|
|
40
|
-
super();
|
|
41
|
-
this.input = input;
|
|
42
|
-
// End section: command_constructor
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* @internal
|
|
46
|
-
*/
|
|
47
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
48
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
49
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
50
|
-
const { logger } = configuration;
|
|
51
|
-
const clientName = "SESClient";
|
|
52
|
-
const commandName = "PutIdentityPolicyCommand";
|
|
53
|
-
const handlerExecutionContext = {
|
|
54
|
-
logger,
|
|
55
|
-
clientName,
|
|
56
|
-
commandName,
|
|
57
|
-
inputFilterSensitiveLog: models_0_1.PutIdentityPolicyRequest.filterSensitiveLog,
|
|
58
|
-
outputFilterSensitiveLog: models_0_1.PutIdentityPolicyResponse.filterSensitiveLog,
|
|
59
|
-
};
|
|
60
|
-
const { requestHandler } = configuration;
|
|
61
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
62
|
-
}
|
|
63
|
-
serialize(input, context) {
|
|
64
|
-
return Aws_query_1.serializeAws_queryPutIdentityPolicyCommand(input, context);
|
|
65
|
-
}
|
|
66
|
-
deserialize(output, context) {
|
|
67
|
-
return Aws_query_1.deserializeAws_queryPutIdentityPolicyCommand(output, context);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
exports.PutIdentityPolicyCommand = PutIdentityPolicyCommand;
|
|
71
|
-
//# sourceMappingURL=PutIdentityPolicyCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PutIdentityPolicyCommand.js","sourceRoot":"","sources":["../../../commands/PutIdentityPolicyCommand.ts"],"names":[],"mappings":";;;AACA,iDAAyF;AACzF,sDAGgC;AAChC,gEAA2D;AAE3D,0DAA6D;AAc7D;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,wBAAyB,SAAQ,uBAI7C;IACC,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAAoC;QACvD,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAA+B;QAGvD,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,0BAA0B,CAAC;QAC/C,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,mCAAwB,CAAC,kBAAkB;YACpE,wBAAwB,EAAE,oCAAyB,CAAC,kBAAkB;SACvE,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,KAAoC,EAAE,OAAuB;QAC7E,OAAO,sDAA0C,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACpE,CAAC;IAEO,WAAW,CAAC,MAAsB,EAAE,OAAuB;QACjE,OAAO,wDAA4C,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACvE,CAAC;CAIF;AAtDD,4DAsDC"}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ReorderReceiptRuleSetCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Reorders the receipt rules within a receipt rule set.</p>
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>All of the rules in the rule set must be represented in this request. That is,
|
|
12
|
-
* this API will return an error if the reorder request doesn't explicitly position all
|
|
13
|
-
* of the rules.</p>
|
|
14
|
-
* </note>
|
|
15
|
-
* <p>For information about managing receipt rule sets, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html">Amazon SES Developer Guide</a>.</p>
|
|
16
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
17
|
-
* @example
|
|
18
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
19
|
-
* ```javascript
|
|
20
|
-
* import { SESClient, ReorderReceiptRuleSetCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
21
|
-
* // const { SESClient, ReorderReceiptRuleSetCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
22
|
-
* const client = new SESClient(config);
|
|
23
|
-
* const command = new ReorderReceiptRuleSetCommand(input);
|
|
24
|
-
* const response = await client.send(command);
|
|
25
|
-
* ```
|
|
26
|
-
*
|
|
27
|
-
* @see {@link ReorderReceiptRuleSetCommandInput} for command's `input` shape.
|
|
28
|
-
* @see {@link ReorderReceiptRuleSetCommandOutput} for command's `response` shape.
|
|
29
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
30
|
-
*
|
|
31
|
-
*/
|
|
32
|
-
class ReorderReceiptRuleSetCommand extends smithy_client_1.Command {
|
|
33
|
-
// Start section: command_properties
|
|
34
|
-
// End section: command_properties
|
|
35
|
-
constructor(input) {
|
|
36
|
-
// Start section: command_constructor
|
|
37
|
-
super();
|
|
38
|
-
this.input = input;
|
|
39
|
-
// End section: command_constructor
|
|
40
|
-
}
|
|
41
|
-
/**
|
|
42
|
-
* @internal
|
|
43
|
-
*/
|
|
44
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
45
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
46
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
47
|
-
const { logger } = configuration;
|
|
48
|
-
const clientName = "SESClient";
|
|
49
|
-
const commandName = "ReorderReceiptRuleSetCommand";
|
|
50
|
-
const handlerExecutionContext = {
|
|
51
|
-
logger,
|
|
52
|
-
clientName,
|
|
53
|
-
commandName,
|
|
54
|
-
inputFilterSensitiveLog: models_0_1.ReorderReceiptRuleSetRequest.filterSensitiveLog,
|
|
55
|
-
outputFilterSensitiveLog: models_0_1.ReorderReceiptRuleSetResponse.filterSensitiveLog,
|
|
56
|
-
};
|
|
57
|
-
const { requestHandler } = configuration;
|
|
58
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
59
|
-
}
|
|
60
|
-
serialize(input, context) {
|
|
61
|
-
return Aws_query_1.serializeAws_queryReorderReceiptRuleSetCommand(input, context);
|
|
62
|
-
}
|
|
63
|
-
deserialize(output, context) {
|
|
64
|
-
return Aws_query_1.deserializeAws_queryReorderReceiptRuleSetCommand(output, context);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
exports.ReorderReceiptRuleSetCommand = ReorderReceiptRuleSetCommand;
|
|
68
|
-
//# sourceMappingURL=ReorderReceiptRuleSetCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReorderReceiptRuleSetCommand.js","sourceRoot":"","sources":["../../../commands/ReorderReceiptRuleSetCommand.ts"],"names":[],"mappings":";;;AACA,iDAAiG;AACjG,sDAGgC;AAChC,gEAA2D;AAE3D,0DAA6D;AAc7D;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,4BAA6B,SAAQ,uBAIjD;IACC,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAAwC;QAC3D,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAAmC;QAG3D,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,8BAA8B,CAAC;QACnD,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,uCAA4B,CAAC,kBAAkB;YACxE,wBAAwB,EAAE,wCAA6B,CAAC,kBAAkB;SAC3E,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,KAAwC,EAAE,OAAuB;QACjF,OAAO,0DAA8C,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACxE,CAAC;IAEO,WAAW,CAAC,MAAsB,EAAE,OAAuB;QACjE,OAAO,4DAAgD,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC3E,CAAC;CAIF;AAtDD,oEAsDC"}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SendBounceCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Generates and sends a bounce message to the sender of an email you received through
|
|
10
|
-
* Amazon SES. You can only use this API on an email up to 24 hours after you receive it.</p>
|
|
11
|
-
* <note>
|
|
12
|
-
* <p>You cannot use this API to send generic bounces for mail that was not received by
|
|
13
|
-
* Amazon SES.</p>
|
|
14
|
-
* </note>
|
|
15
|
-
* <p>For information about receiving email through Amazon SES, see the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html">Amazon SES
|
|
16
|
-
* Developer Guide</a>.</p>
|
|
17
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
18
|
-
* @example
|
|
19
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
20
|
-
* ```javascript
|
|
21
|
-
* import { SESClient, SendBounceCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
22
|
-
* // const { SESClient, SendBounceCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
23
|
-
* const client = new SESClient(config);
|
|
24
|
-
* const command = new SendBounceCommand(input);
|
|
25
|
-
* const response = await client.send(command);
|
|
26
|
-
* ```
|
|
27
|
-
*
|
|
28
|
-
* @see {@link SendBounceCommandInput} for command's `input` shape.
|
|
29
|
-
* @see {@link SendBounceCommandOutput} for command's `response` shape.
|
|
30
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
31
|
-
*
|
|
32
|
-
*/
|
|
33
|
-
class SendBounceCommand extends smithy_client_1.Command {
|
|
34
|
-
// Start section: command_properties
|
|
35
|
-
// End section: command_properties
|
|
36
|
-
constructor(input) {
|
|
37
|
-
// Start section: command_constructor
|
|
38
|
-
super();
|
|
39
|
-
this.input = input;
|
|
40
|
-
// End section: command_constructor
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
46
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
47
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
48
|
-
const { logger } = configuration;
|
|
49
|
-
const clientName = "SESClient";
|
|
50
|
-
const commandName = "SendBounceCommand";
|
|
51
|
-
const handlerExecutionContext = {
|
|
52
|
-
logger,
|
|
53
|
-
clientName,
|
|
54
|
-
commandName,
|
|
55
|
-
inputFilterSensitiveLog: models_0_1.SendBounceRequest.filterSensitiveLog,
|
|
56
|
-
outputFilterSensitiveLog: models_0_1.SendBounceResponse.filterSensitiveLog,
|
|
57
|
-
};
|
|
58
|
-
const { requestHandler } = configuration;
|
|
59
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
60
|
-
}
|
|
61
|
-
serialize(input, context) {
|
|
62
|
-
return Aws_query_1.serializeAws_querySendBounceCommand(input, context);
|
|
63
|
-
}
|
|
64
|
-
deserialize(output, context) {
|
|
65
|
-
return Aws_query_1.deserializeAws_querySendBounceCommand(output, context);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
exports.SendBounceCommand = SendBounceCommand;
|
|
69
|
-
//# sourceMappingURL=SendBounceCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SendBounceCommand.js","sourceRoot":"","sources":["../../../commands/SendBounceCommand.ts"],"names":[],"mappings":";;;AACA,iDAA2E;AAC3E,sDAAoH;AACpH,gEAA2D;AAE3D,0DAA6D;AAc7D;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAa,iBAAkB,SAAQ,uBAItC;IACC,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAA6B;QAChD,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAAwB;QAGhD,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,mBAAmB,CAAC;QACxC,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,4BAAiB,CAAC,kBAAkB;YAC7D,wBAAwB,EAAE,6BAAkB,CAAC,kBAAkB;SAChE,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,KAA6B,EAAE,OAAuB;QACtE,OAAO,+CAAmC,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAC7D,CAAC;IAEO,WAAW,CAAC,MAAsB,EAAE,OAAuB;QACjE,OAAO,iDAAqC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChE,CAAC;CAIF;AAtDD,8CAsDC"}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SendBulkTemplatedEmailCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Composes an email message to multiple destinations. The message body is created using
|
|
10
|
-
* an email template.</p>
|
|
11
|
-
* <p>In order to send email using the <code>SendBulkTemplatedEmail</code> operation, your
|
|
12
|
-
* call to the API must meet the following requirements:</p>
|
|
13
|
-
* <ul>
|
|
14
|
-
* <li>
|
|
15
|
-
* <p>The call must refer to an existing email template. You can create email
|
|
16
|
-
* templates using the <a>CreateTemplate</a> operation.</p>
|
|
17
|
-
* </li>
|
|
18
|
-
* <li>
|
|
19
|
-
* <p>The message must be sent from a verified email address or domain.</p>
|
|
20
|
-
* </li>
|
|
21
|
-
* <li>
|
|
22
|
-
* <p>If your account is still in the Amazon SES sandbox, you may only send to verified
|
|
23
|
-
* addresses or domains, or to email addresses associated with the Amazon SES Mailbox
|
|
24
|
-
* Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
|
|
25
|
-
* Email Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
26
|
-
* Guide.</i>
|
|
27
|
-
* </p>
|
|
28
|
-
* </li>
|
|
29
|
-
* <li>
|
|
30
|
-
* <p>The maximum message size is 10 MB.</p>
|
|
31
|
-
* </li>
|
|
32
|
-
* <li>
|
|
33
|
-
* <p>Each <code>Destination</code> parameter must include at least one recipient
|
|
34
|
-
* email address. The recipient address can be a To: address, a CC: address, or a
|
|
35
|
-
* BCC: address. If a recipient email address is invalid (that is, it is not in the
|
|
36
|
-
* format <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the
|
|
37
|
-
* entire message will be rejected, even if the message contains other recipients
|
|
38
|
-
* that are valid.</p>
|
|
39
|
-
* </li>
|
|
40
|
-
* <li>
|
|
41
|
-
* <p>The message may not include more than 50 recipients, across the To:, CC: and
|
|
42
|
-
* BCC: fields. If you need to send an email message to a larger audience, you can
|
|
43
|
-
* divide your recipient list into groups of 50 or fewer, and then call the
|
|
44
|
-
* <code>SendBulkTemplatedEmail</code> operation several times to send the
|
|
45
|
-
* message to each group.</p>
|
|
46
|
-
* </li>
|
|
47
|
-
* <li>
|
|
48
|
-
* <p>The number of destinations you can contact in a single call to the API may be
|
|
49
|
-
* limited by your account's maximum sending rate.</p>
|
|
50
|
-
* </li>
|
|
51
|
-
* </ul>
|
|
52
|
-
* @example
|
|
53
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
54
|
-
* ```javascript
|
|
55
|
-
* import { SESClient, SendBulkTemplatedEmailCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
56
|
-
* // const { SESClient, SendBulkTemplatedEmailCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
57
|
-
* const client = new SESClient(config);
|
|
58
|
-
* const command = new SendBulkTemplatedEmailCommand(input);
|
|
59
|
-
* const response = await client.send(command);
|
|
60
|
-
* ```
|
|
61
|
-
*
|
|
62
|
-
* @see {@link SendBulkTemplatedEmailCommandInput} for command's `input` shape.
|
|
63
|
-
* @see {@link SendBulkTemplatedEmailCommandOutput} for command's `response` shape.
|
|
64
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
65
|
-
*
|
|
66
|
-
*/
|
|
67
|
-
class SendBulkTemplatedEmailCommand extends smithy_client_1.Command {
|
|
68
|
-
// Start section: command_properties
|
|
69
|
-
// End section: command_properties
|
|
70
|
-
constructor(input) {
|
|
71
|
-
// Start section: command_constructor
|
|
72
|
-
super();
|
|
73
|
-
this.input = input;
|
|
74
|
-
// End section: command_constructor
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
80
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
81
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
82
|
-
const { logger } = configuration;
|
|
83
|
-
const clientName = "SESClient";
|
|
84
|
-
const commandName = "SendBulkTemplatedEmailCommand";
|
|
85
|
-
const handlerExecutionContext = {
|
|
86
|
-
logger,
|
|
87
|
-
clientName,
|
|
88
|
-
commandName,
|
|
89
|
-
inputFilterSensitiveLog: models_0_1.SendBulkTemplatedEmailRequest.filterSensitiveLog,
|
|
90
|
-
outputFilterSensitiveLog: models_0_1.SendBulkTemplatedEmailResponse.filterSensitiveLog,
|
|
91
|
-
};
|
|
92
|
-
const { requestHandler } = configuration;
|
|
93
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
94
|
-
}
|
|
95
|
-
serialize(input, context) {
|
|
96
|
-
return Aws_query_1.serializeAws_querySendBulkTemplatedEmailCommand(input, context);
|
|
97
|
-
}
|
|
98
|
-
deserialize(output, context) {
|
|
99
|
-
return Aws_query_1.deserializeAws_querySendBulkTemplatedEmailCommand(output, context);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
exports.SendBulkTemplatedEmailCommand = SendBulkTemplatedEmailCommand;
|
|
103
|
-
//# sourceMappingURL=SendBulkTemplatedEmailCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SendBulkTemplatedEmailCommand.js","sourceRoot":"","sources":["../../../commands/SendBulkTemplatedEmailCommand.ts"],"names":[],"mappings":";;;AACA,iDAAmG;AACnG,sDAGgC;AAChC,gEAA2D;AAE3D,0DAA6D;AAc7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,MAAa,6BAA8B,SAAQ,uBAIlD;IACC,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAAyC;QAC5D,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAAoC;QAG5D,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,+BAA+B,CAAC;QACpD,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,wCAA6B,CAAC,kBAAkB;YACzE,wBAAwB,EAAE,yCAA8B,CAAC,kBAAkB;SAC5E,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,KAAyC,EAAE,OAAuB;QAClF,OAAO,2DAA+C,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACzE,CAAC;IAEO,WAAW,CAAC,MAAsB,EAAE,OAAuB;QACjE,OAAO,6DAAiD,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC5E,CAAC;CAIF;AAtDD,sEAsDC"}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SendCustomVerificationEmailCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Adds an email address to the list of identities for your Amazon SES account in the current
|
|
10
|
-
* AWS Region and attempts to verify it. As a result of executing this operation, a
|
|
11
|
-
* customized verification email is sent to the specified address.</p>
|
|
12
|
-
* <p>To use this operation, you must first create a custom verification email template. For
|
|
13
|
-
* more information about creating and using custom verification email templates, see
|
|
14
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html">Using Custom
|
|
15
|
-
* Verification Email Templates</a> in the <i>Amazon SES Developer
|
|
16
|
-
* Guide</i>.</p>
|
|
17
|
-
* <p>You can execute this operation no more than once per second.</p>
|
|
18
|
-
* @example
|
|
19
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
20
|
-
* ```javascript
|
|
21
|
-
* import { SESClient, SendCustomVerificationEmailCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
22
|
-
* // const { SESClient, SendCustomVerificationEmailCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
23
|
-
* const client = new SESClient(config);
|
|
24
|
-
* const command = new SendCustomVerificationEmailCommand(input);
|
|
25
|
-
* const response = await client.send(command);
|
|
26
|
-
* ```
|
|
27
|
-
*
|
|
28
|
-
* @see {@link SendCustomVerificationEmailCommandInput} for command's `input` shape.
|
|
29
|
-
* @see {@link SendCustomVerificationEmailCommandOutput} for command's `response` shape.
|
|
30
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
31
|
-
*
|
|
32
|
-
*/
|
|
33
|
-
class SendCustomVerificationEmailCommand extends smithy_client_1.Command {
|
|
34
|
-
// Start section: command_properties
|
|
35
|
-
// End section: command_properties
|
|
36
|
-
constructor(input) {
|
|
37
|
-
// Start section: command_constructor
|
|
38
|
-
super();
|
|
39
|
-
this.input = input;
|
|
40
|
-
// End section: command_constructor
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
46
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
47
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
48
|
-
const { logger } = configuration;
|
|
49
|
-
const clientName = "SESClient";
|
|
50
|
-
const commandName = "SendCustomVerificationEmailCommand";
|
|
51
|
-
const handlerExecutionContext = {
|
|
52
|
-
logger,
|
|
53
|
-
clientName,
|
|
54
|
-
commandName,
|
|
55
|
-
inputFilterSensitiveLog: models_0_1.SendCustomVerificationEmailRequest.filterSensitiveLog,
|
|
56
|
-
outputFilterSensitiveLog: models_0_1.SendCustomVerificationEmailResponse.filterSensitiveLog,
|
|
57
|
-
};
|
|
58
|
-
const { requestHandler } = configuration;
|
|
59
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
60
|
-
}
|
|
61
|
-
serialize(input, context) {
|
|
62
|
-
return Aws_query_1.serializeAws_querySendCustomVerificationEmailCommand(input, context);
|
|
63
|
-
}
|
|
64
|
-
deserialize(output, context) {
|
|
65
|
-
return Aws_query_1.deserializeAws_querySendCustomVerificationEmailCommand(output, context);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
exports.SendCustomVerificationEmailCommand = SendCustomVerificationEmailCommand;
|
|
69
|
-
//# sourceMappingURL=SendCustomVerificationEmailCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SendCustomVerificationEmailCommand.js","sourceRoot":"","sources":["../../../commands/SendCustomVerificationEmailCommand.ts"],"names":[],"mappings":";;;AACA,iDAA6G;AAC7G,sDAGgC;AAChC,gEAA2D;AAE3D,0DAA6D;AAgB7D;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAa,kCAAmC,SAAQ,uBAIvD;IACC,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAA8C;QACjE,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAAyC;QAGjE,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,oCAAoC,CAAC;QACzD,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,6CAAkC,CAAC,kBAAkB;YAC9E,wBAAwB,EAAE,8CAAmC,CAAC,kBAAkB;SACjF,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,KAA8C,EAAE,OAAuB;QACvF,OAAO,gEAAoD,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAEO,WAAW,CACjB,MAAsB,EACtB,OAAuB;QAEvB,OAAO,kEAAsD,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjF,CAAC;CAIF;AAzDD,gFAyDC"}
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SendEmailCommand = void 0;
|
|
4
|
-
const models_0_1 = require("../models/models_0");
|
|
5
|
-
const Aws_query_1 = require("../protocols/Aws_query");
|
|
6
|
-
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
7
|
-
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
|
-
/**
|
|
9
|
-
* <p>Composes an email message and immediately queues it for sending. In order to send
|
|
10
|
-
* email using the <code>SendEmail</code> operation, your message must meet the following
|
|
11
|
-
* requirements:</p>
|
|
12
|
-
*
|
|
13
|
-
* <ul>
|
|
14
|
-
* <li>
|
|
15
|
-
* <p>The message must be sent from a verified email address or domain. If you
|
|
16
|
-
* attempt to send email using a non-verified address or domain, the operation will
|
|
17
|
-
* result in an "Email address not verified" error. </p>
|
|
18
|
-
* </li>
|
|
19
|
-
* <li>
|
|
20
|
-
* <p>If your account is still in the Amazon SES sandbox, you may only send to verified
|
|
21
|
-
* addresses or domains, or to email addresses associated with the Amazon SES Mailbox
|
|
22
|
-
* Simulator. For more information, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html">Verifying
|
|
23
|
-
* Email Addresses and Domains</a> in the <i>Amazon SES Developer
|
|
24
|
-
* Guide.</i>
|
|
25
|
-
* </p>
|
|
26
|
-
* </li>
|
|
27
|
-
* <li>
|
|
28
|
-
* <p>The maximum message size is 10 MB.</p>
|
|
29
|
-
* </li>
|
|
30
|
-
* <li>
|
|
31
|
-
* <p>The message must include at least one recipient email address. The recipient
|
|
32
|
-
* address can be a To: address, a CC: address, or a BCC: address. If a recipient
|
|
33
|
-
* email address is invalid (that is, it is not in the format
|
|
34
|
-
* <i>UserName@[SubDomain.]Domain.TopLevelDomain</i>), the entire
|
|
35
|
-
* message will be rejected, even if the message contains other recipients that are
|
|
36
|
-
* valid.</p>
|
|
37
|
-
* </li>
|
|
38
|
-
* <li>
|
|
39
|
-
* <p>The message may not include more than 50 recipients, across the To:, CC: and
|
|
40
|
-
* BCC: fields. If you need to send an email message to a larger audience, you can
|
|
41
|
-
* divide your recipient list into groups of 50 or fewer, and then call the
|
|
42
|
-
* <code>SendEmail</code> operation several times to send the message to each
|
|
43
|
-
* group.</p>
|
|
44
|
-
* </li>
|
|
45
|
-
* </ul>
|
|
46
|
-
* <important>
|
|
47
|
-
* <p>For every message that you send, the total number of recipients (including each
|
|
48
|
-
* recipient in the To:, CC: and BCC: fields) is counted against the maximum number of
|
|
49
|
-
* emails you can send in a 24-hour period (your <i>sending quota</i>).
|
|
50
|
-
* For more information about sending quotas in Amazon SES, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html">Managing Your Amazon SES
|
|
51
|
-
* Sending Limits</a> in the <i>Amazon SES Developer Guide.</i>
|
|
52
|
-
* </p>
|
|
53
|
-
* </important>
|
|
54
|
-
* @example
|
|
55
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
56
|
-
* ```javascript
|
|
57
|
-
* import { SESClient, SendEmailCommand } from "@aws-sdk/client-ses"; // ES Modules import
|
|
58
|
-
* // const { SESClient, SendEmailCommand } = require("@aws-sdk/client-ses"); // CommonJS import
|
|
59
|
-
* const client = new SESClient(config);
|
|
60
|
-
* const command = new SendEmailCommand(input);
|
|
61
|
-
* const response = await client.send(command);
|
|
62
|
-
* ```
|
|
63
|
-
*
|
|
64
|
-
* @see {@link SendEmailCommandInput} for command's `input` shape.
|
|
65
|
-
* @see {@link SendEmailCommandOutput} for command's `response` shape.
|
|
66
|
-
* @see {@link SESClientResolvedConfig | config} for command's `input` shape.
|
|
67
|
-
*
|
|
68
|
-
*/
|
|
69
|
-
class SendEmailCommand extends smithy_client_1.Command {
|
|
70
|
-
// Start section: command_properties
|
|
71
|
-
// End section: command_properties
|
|
72
|
-
constructor(input) {
|
|
73
|
-
// Start section: command_constructor
|
|
74
|
-
super();
|
|
75
|
-
this.input = input;
|
|
76
|
-
// End section: command_constructor
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
82
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
83
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
84
|
-
const { logger } = configuration;
|
|
85
|
-
const clientName = "SESClient";
|
|
86
|
-
const commandName = "SendEmailCommand";
|
|
87
|
-
const handlerExecutionContext = {
|
|
88
|
-
logger,
|
|
89
|
-
clientName,
|
|
90
|
-
commandName,
|
|
91
|
-
inputFilterSensitiveLog: models_0_1.SendEmailRequest.filterSensitiveLog,
|
|
92
|
-
outputFilterSensitiveLog: models_0_1.SendEmailResponse.filterSensitiveLog,
|
|
93
|
-
};
|
|
94
|
-
const { requestHandler } = configuration;
|
|
95
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
96
|
-
}
|
|
97
|
-
serialize(input, context) {
|
|
98
|
-
return Aws_query_1.serializeAws_querySendEmailCommand(input, context);
|
|
99
|
-
}
|
|
100
|
-
deserialize(output, context) {
|
|
101
|
-
return Aws_query_1.deserializeAws_querySendEmailCommand(output, context);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
exports.SendEmailCommand = SendEmailCommand;
|
|
105
|
-
//# sourceMappingURL=SendEmailCommand.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SendEmailCommand.js","sourceRoot":"","sources":["../../../commands/SendEmailCommand.ts"],"names":[],"mappings":";;;AACA,iDAAyE;AACzE,sDAAkH;AAClH,gEAA2D;AAE3D,0DAA6D;AAc7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4DG;AACH,MAAa,gBAAiB,SAAQ,uBAAgF;IACpH,oCAAoC;IACpC,kCAAkC;IAElC,YAAqB,KAA4B;QAC/C,qCAAqC;QACrC,KAAK,EAAE,CAAC;QAFW,UAAK,GAAL,KAAK,CAAuB;QAG/C,mCAAmC;IACrC,CAAC;IAED;;OAEG;IACH,iBAAiB,CACf,WAAmE,EACnE,aAAsC,EACtC,OAA8B;QAE9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,iCAAc,CAAC,aAAa,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAE1F,MAAM,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvD,MAAM,EAAE,MAAM,EAAE,GAAG,aAAa,CAAC;QACjC,MAAM,UAAU,GAAG,WAAW,CAAC;QAC/B,MAAM,WAAW,GAAG,kBAAkB,CAAC;QACvC,MAAM,uBAAuB,GAA4B;YACvD,MAAM;YACN,UAAU;YACV,WAAW;YACX,uBAAuB,EAAE,2BAAgB,CAAC,kBAAkB;YAC5D,wBAAwB,EAAE,4BAAiB,CAAC,kBAAkB;SAC/D,CAAC;QACF,MAAM,EAAE,cAAc,EAAE,GAAG,aAAa,CAAC;QACzC,OAAO,KAAK,CAAC,OAAO,CAClB,CAAC,OAAsC,EAAE,EAAE,CACzC,cAAc,CAAC,MAAM,CAAC,OAAO,CAAC,OAAwB,EAAE,OAAO,IAAI,EAAE,CAAC,EACxE,uBAAuB,CACxB,CAAC;IACJ,CAAC;IAEO,SAAS,CAAC,KAA4B,EAAE,OAAuB;QACrE,OAAO,8CAAkC,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAC5D,CAAC;IAEO,WAAW,CAAC,MAAsB,EAAE,OAAuB;QACjE,OAAO,gDAAoC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC/D,CAAC;CAIF;AAlDD,4CAkDC"}
|