Best Python code snippet using localstack_python
test_identity.py
Source:test_identity.py  
...115        </SetIdentityFeedbackForwardingEnabledResponse>"""116    def test_ses_set_identity_feedback_forwarding_enabled_true(self):117        self.set_http_response(status_code=200)118        response = self.service_connection\119                       .set_identity_feedback_forwarding_enabled(120                            identity='user@example.com',121                            forwarding_enabled=True)122        response = response['SetIdentityFeedbackForwardingEnabledResponse']123        result = response['SetIdentityFeedbackForwardingEnabledResult']124        self.assertEqual(2, len(response))125        self.assertEqual(0, len(result))126    def test_ses_set_identity_notification_topic_enabled_false(self):127        self.set_http_response(status_code=200)128        response = self.service_connection\129                       .set_identity_feedback_forwarding_enabled(130                            identity='user@example.com',131                            forwarding_enabled=False)132        response = response['SetIdentityFeedbackForwardingEnabledResponse']133        result = response['SetIdentityFeedbackForwardingEnabledResult']134        self.assertEqual(2, len(response))135        self.assertEqual(0, len(result))136if __name__ == '__main__':...identity_notifications_provider.py
Source:identity_notifications_provider.py  
...125                kwargs["Enabled"] = self.get(126                    f"HeadersIn{notification_type}NotificationsEnabled"127                )128                self.ses.set_identity_headers_in_notifications_enabled(**kwargs)129        self.ses.set_identity_feedback_forwarding_enabled(130            Identity=self.identity, ForwardingEnabled=self.get("ForwardingEnabled")131        )132    def clear_notifications(self):133        self.ses.set_identity_feedback_forwarding_enabled(134            Identity=self.identity, ForwardingEnabled=True135        )136        for notification_type in ["Bounce", "Complaint", "Delivery"]:137            self.ses.set_identity_notification_topic(138                Identity=self.identity, NotificationType=notification_type139            )140    def create(self):141        if self.check_precondition():142            self.set_notifications()143    def update(self):144        if self.check_precondition():145            self.set_notifications()146    def delete(self):147        if self.physical_resource_id != "could-not-create":...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
