SES (Simple Email Service)

Implementation details for API ses

Coverage Overview

Simple Email Service (SES) is supported by LocalStack in the community image with additional features available in the pro image.

AvailabilityTesting*
OperationImplementedImageInternal Test SuiteExternal Test SuiteTerraform ValidatedAWS ValidatedSnapshot TestedDetails
CloneReceiptRuleSet✔️community✔️✔️✔️Show Tests
CreateConfigurationSet✔️community✔️✔️✔️✔️✔️Show Tests
CreateConfigurationSetEventDestination✔️community✔️✔️✔️✔️✔️Show Tests
CreateConfigurationSetTrackingOptions
CreateCustomVerificationEmailTemplate
CreateReceiptFilter
CreateReceiptRule✔️community✔️✔️✔️✔️✔️Show Tests
CreateReceiptRuleSet✔️community✔️✔️✔️✔️✔️Show Tests
CreateTemplate✔️community✔️✔️✔️✔️✔️Show Tests
DeleteConfigurationSet✔️community✔️✔️✔️✔️✔️Show Tests
DeleteConfigurationSetEventDestination✔️community✔️✔️✔️Show Tests
DeleteConfigurationSetTrackingOptions
DeleteCustomVerificationEmailTemplate
DeleteIdentity✔️community✔️✔️
DeleteIdentityPolicy
DeleteReceiptFilter
DeleteReceiptRule✔️pro✔️✔️✔️✔️✔️Show Tests
DeleteReceiptRuleSet✔️pro✔️✔️✔️✔️✔️Show Tests
DeleteTemplate✔️community✔️✔️✔️✔️✔️Show Tests
DeleteVerifiedEmailAddress
DescribeActiveReceiptRuleSet✔️pro✔️✔️✔️Show Tests
DescribeConfigurationSet✔️community✔️✔️
DescribeReceiptRule✔️community✔️✔️✔️✔️✔️Show Tests
DescribeReceiptRuleSet✔️community✔️✔️✔️✔️✔️Show Tests
GetAccountSendingEnabled
GetCustomVerificationEmailTemplate
GetIdentityDkimAttributes
GetIdentityMailFromDomainAttributes✔️community✔️✔️
GetIdentityNotificationAttributes✔️community✔️
GetIdentityPolicies
GetIdentityVerificationAttributes✔️community✔️✔️✔️✔️✔️Show Tests
GetSendQuota✔️community✔️✔️✔️✔️Show Tests
GetSendStatistics✔️community✔️
GetTemplate✔️community✔️✔️✔️✔️✔️Show Tests
ListConfigurationSets
ListCustomVerificationEmailTemplates
ListIdentities✔️community✔️✔️
ListIdentityPolicies
ListReceiptFilters
ListReceiptRuleSets✔️pro✔️Show Tests
ListTemplates✔️community✔️✔️✔️✔️Show Tests
ListVerifiedEmailAddresses✔️community✔️
PutConfigurationSetDeliveryOptions
PutIdentityPolicy
ReorderReceiptRuleSet
SendBounce
SendBulkTemplatedEmail✔️community✔️Show Tests
SendCustomVerificationEmail
SendEmail✔️community✔️✔️✔️✔️Show Tests
SendRawEmail✔️community✔️✔️✔️✔️Show Tests
SendTemplatedEmail✔️community✔️✔️✔️✔️Show Tests
SetActiveReceiptRuleSet✔️pro✔️✔️✔️Show Tests
SetIdentityDkimEnabled
SetIdentityFeedbackForwardingEnabled✔️community✔️
SetIdentityHeadersInNotificationsEnabled
SetIdentityMailFromDomain✔️community✔️✔️
SetIdentityNotificationTopic✔️community✔️
SetReceiptRulePosition
TestRenderTemplate✔️community✔️
UpdateAccountSendingEnabled
UpdateConfigurationSetEventDestination
UpdateConfigurationSetReputationMetricsEnabled
UpdateConfigurationSetSendingEnabled
UpdateConfigurationSetTrackingOptions
UpdateCustomVerificationEmailTemplate
UpdateReceiptRule✔️community✔️
UpdateTemplate✔️community✔️✔️
VerifyDomainDkim✔️community✔️✔️
VerifyDomainIdentity✔️community✔️✔️
VerifyEmailAddress✔️community✔️✔️Show Tests
VerifyEmailIdentity✔️community✔️✔️✔️✔️✔️Show Tests

Terminology

  • Internal Test Suite: tested by LocalStack's internal integration test suite
  • External Test Suite: covered by an external integration test suite, that runs against LocalStack
  • Terraform Validated: operation tested with Terraform
  • AWS Validated: the integration test that includes this operation call was validated against AWS
  • Snapshot Tested: the operation is part of a snapshot parity test, which verifies the responses by LocalStack and AWS are the same

Testing Details

This section gives an overview about the internal integration test suite and the specific test cases that recorded the API call.

How to read the test details?

For each operation we put up a list of the related integration test cases.
Those operation calls have been recorded during the exeuction of the outlined test cases. Some calls might be internal, i.e., they are not explicitly called in the test, but are triggered implicitly by the LocalStack framework.

  • Parameters: The tests are ordered by the parameters used, which are highlighted in bold.
  • Test Details: LocalStack Community or LocalStack Pro indicates where the test originates. For each test you see:
    • test name
    • status code returned (which is the expected one for the test case)
    • information about validation:
      • AWS validated the test is validated against AWS, meaning it run successfully against real AWS as well
      • Snapshot Tested this is a snapshot parity test, meaning the responses are validated against AWS


CloneReceiptRuleSet

Parameters: OriginalRuleSetName, RuleSetName
  • LocalStack Community
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 200 AWS validated Snapshot Tested

CreateConfigurationSet

Parameters: ConfigurationSet
  • LocalStack Community
    • test_cannot_create_event_for_no_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_cannot_create_event_for_no_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deleting_non_existent_configuration_set_event_destination LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_deleting_non_existent_configuration_set_event_destination HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sending_to_deleted_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_raw_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_trying_to_delete_event_destination_from_non_existent_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_trying_to_delete_event_destination_from_non_existent_configuration_set HTTP Status Code: 200 AWS validated Snapshot Tested

CreateConfigurationSetEventDestination

Parameters: ConfigurationSetName, EventDestination
  • LocalStack Community
    • test_sending_to_deleted_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_raw_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_trying_to_delete_event_destination_from_non_existent_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_trying_to_delete_event_destination_from_non_existent_configuration_set HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cannot_create_event_for_no_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_cannot_create_event_for_no_topic HTTP Status Code: 400 (InvalidSNSDestinationException) AWS validated Snapshot Tested
    • test_creating_event_destination_without_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_creating_event_destination_without_configuration_set HTTP Status Code: 400 (ConfigurationSetDoesNotExistException) AWS validated Snapshot Tested

CreateReceiptRule

Parameters: After, Rule, RuleSetName
  • LocalStack Community
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: Rule, RuleSetName
  • LocalStack Community
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 200
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 400 (CommonServiceException)
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 400 (CommonServiceException)

CreateReceiptRuleSet

Parameters: RuleSetName
  • LocalStack Community
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 200
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 200
    • test_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set HTTP Status Code: 200
    • test_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set HTTP Status Code: 400 (CommonServiceException)

CreateTemplate

Parameters: Template
  • LocalStack Community
    • test_delete_template LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_delete_template HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_templates LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_list_templates HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_send_templated_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_templated_email_can_retrospect HTTP Status Code: 200
  • LocalStack Pro
    • test_create_template LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_template HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_send_bulk_templated_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_bulk_templated_email HTTP Status Code: 200
    • test_templated_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_templated_email HTTP Status Code: 200

DeleteConfigurationSet

Parameters: ConfigurationSetName
  • LocalStack Community
    • test_cannot_create_event_for_no_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_cannot_create_event_for_no_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deleting_non_existent_configuration_set_event_destination LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_deleting_non_existent_configuration_set_event_destination HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sending_to_deleted_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_raw_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_trying_to_delete_event_destination_from_non_existent_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_trying_to_delete_event_destination_from_non_existent_configuration_set HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deleting_non_existent_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_deleting_non_existent_configuration_set HTTP Status Code: 400 (ConfigurationSetDoesNotExistException) AWS validated Snapshot Tested

DeleteConfigurationSetEventDestination

Parameters: ConfigurationSetName, EventDestinationName
  • LocalStack Community
    • test_sending_to_deleted_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_raw_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_trying_to_delete_event_destination_from_non_existent_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_trying_to_delete_event_destination_from_non_existent_configuration_set HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deleting_non_existent_configuration_set_event_destination LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_deleting_non_existent_configuration_set_event_destination HTTP Status Code: 400 (EventDestinationDoesNotExistException) AWS validated Snapshot Tested
    • test_trying_to_delete_event_destination_from_non_existent_configuration_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_trying_to_delete_event_destination_from_non_existent_configuration_set HTTP Status Code: 400 (ConfigurationSetDoesNotExistException) AWS validated Snapshot Tested

DeleteReceiptRule

Parameters: RuleName, RuleSetName
  • LocalStack Pro
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 200
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 400 (RuleSetDoesNotExistException) AWS validated Snapshot Tested
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 400 (RuleSetDoesNotExistException)
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 400 (RuleDoesNotExistException)

DeleteReceiptRuleSet

Parameters: RuleSetName
  • LocalStack Community
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 501 (CommonServiceException) AWS validated Snapshot Tested
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 501 (CommonServiceException) AWS validated Snapshot Tested
  • LocalStack Pro
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 200
    • test_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set HTTP Status Code: 200

DeleteTemplate

Parameters: TemplateName
  • LocalStack Community
    • test_delete_template LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_delete_template HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_templates LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_list_templates HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_send_templated_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_templated_email_can_retrospect HTTP Status Code: 200
  • LocalStack Pro
    • test_create_template LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_template HTTP Status Code: 200 AWS validated Snapshot Tested

DescribeActiveReceiptRuleSet

Parameters: - (without any parameters)
  • LocalStack Pro
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 200
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 400 (RuleSetDoesNotExistException)
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 400 (RuleSetDoesNotExistException)

DescribeReceiptRule

Parameters: RuleName, RuleSetName
  • LocalStack Pro
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 200
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 400 (CommonServiceException)
    • test_receipt_rule LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule HTTP Status Code: 400 (CommonServiceException)

DescribeReceiptRuleSet

Parameters: RuleSetName
  • LocalStack Community
    • test_clone_receipt_rule_set LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set HTTP Status Code: 200
    • test_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set HTTP Status Code: 400 (CommonServiceException)

GetIdentityVerificationAttributes

Parameters: Identities
  • LocalStack Community
    • test_get_identity_verification_attributes_for_domain LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_get_identity_verification_attributes_for_domain HTTP Status Code: 200
    • test_get_identity_verification_attributes_for_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_get_identity_verification_attributes_for_email HTTP Status Code: 200 AWS validated Snapshot Tested

GetSendQuota

Parameters: - (without any parameters)
  • LocalStack Community
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested

GetTemplate

Parameters: TemplateName
  • LocalStack Pro
    • test_create_template LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_template HTTP Status Code: 200 AWS validated Snapshot Tested

ListReceiptRuleSets

Parameters: - (without any parameters)
  • LocalStack Pro
    • test_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set HTTP Status Code: 200

ListTemplates

Parameters: - (without any parameters)
  • LocalStack Community
    • test_delete_template LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_delete_template HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_templates LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_list_templates HTTP Status Code: 200 AWS validated Snapshot Tested

SendBulkTemplatedEmail

Parameters: Destinations, Source, Template
  • LocalStack Pro
    • test_send_bulk_templated_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_bulk_templated_email HTTP Status Code: 200

SendEmail

Parameters: ConfigurationSetName, Destination, Message, Source
  • LocalStack Community
    • test_sending_to_deleted_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: ConfigurationSetName, Destination, Message, Source, Tags
  • LocalStack Community
    • test_ses_sns_topic_integration_send_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: Destination, Message, Source
  • LocalStack Community
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_send_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_email_can_retrospect HTTP Status Code: 200
  • LocalStack Pro
    • test_sns_ses_subscription LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_sns_ses_subscription HTTP Status Code: 200
    • test_send_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_email HTTP Status Code: 200
    • test_send_email_html_only LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_email_html_only HTTP Status Code: 200
Parameters: Destination, Message, Source, Tags
  • LocalStack Community
    • test_invalid_tags_send_email[-] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[-] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[-test] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[-test] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test-] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test-] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test-test_invalid_value:123] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test-test_invalid_value:123] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test_invalid_name:123-test] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test_invalid_name:123-test] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test_invalid_name:123-test_invalid_value:123] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test_invalid_name:123-test_invalid_value:123] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test_invalid_name_len] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test_invalid_name_len] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test_invalid_value_len] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test_invalid_value_len] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested
    • test_invalid_tags_send_email[test_priority_name_value] LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_invalid_tags_send_email[test_priority_name_value] HTTP Status Code: 400 (InvalidParameterValue) AWS validated Snapshot Tested

SendRawEmail

Parameters: ConfigurationSetName, Destinations, RawMessage, Source, Tags
  • LocalStack Community
    • test_ses_sns_topic_integration_send_raw_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: RawMessage
  • LocalStack Community
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_send_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_email_can_retrospect HTTP Status Code: 200
  • LocalStack Pro
    • test_raw_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_raw_email HTTP Status Code: 200

SendTemplatedEmail

Parameters: ConfigurationSetName, Destination, Source, Tags, Template, TemplateData
  • LocalStack Community
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: Destination, Source, Template, TemplateData
  • LocalStack Community
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_send_templated_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_templated_email_can_retrospect HTTP Status Code: 200
  • LocalStack Pro
    • test_templated_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_templated_email HTTP Status Code: 200

SetActiveReceiptRuleSet

Parameters: RuleSetName
  • LocalStack Pro
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 200
    • test_active_receipt_rule_set LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_active_receipt_rule_set HTTP Status Code: 400 (RuleSetDoesNotExistException)

VerifyEmailAddress

Parameters: EmailAddress
  • LocalStack Community
    • test_send_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_email_can_retrospect HTTP Status Code: 200
    • test_send_templated_email_can_retrospect LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_templated_email_can_retrospect HTTP Status Code: 200
  • LocalStack Pro
    • test_sns_ses_subscription LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_sns_ses_subscription HTTP Status Code: 200

VerifyEmailIdentity

Parameters: EmailAddress
  • LocalStack Community
    • test_get_identity_verification_attributes_for_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_get_identity_verification_attributes_for_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sending_to_deleted_topic LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sent_message_counter LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sent_message_counter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_raw_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ses_sns_topic_integration_send_templated_email LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_sns_ses_subscription LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_sns_ses_subscription HTTP Status Code: 200
    • test_raw_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_raw_email HTTP Status Code: 200
    • test_send_bulk_templated_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_bulk_templated_email HTTP Status Code: 200
    • test_send_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_email HTTP Status Code: 200
    • test_send_email_html_only LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_send_email_html_only HTTP Status Code: 200
    • test_templated_email LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_templated_email HTTP Status Code: 200


Last modified March 20, 2023: improve Coverage Docs (#505) (46f2fb0c0)