Best Python code snippet using localstack_python
client.pyi
Source:client.pyi  
...237        and click event tracking.238        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ses.html#SES.Client.delete_configuration_set_tracking_options)239        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ses/client.html#delete_configuration_set_tracking_options)240        """241    def delete_custom_verification_email_template(self, *, TemplateName: str) -> None:242        """243        Deletes an existing custom verification email template.244        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ses.html#SES.Client.delete_custom_verification_email_template)245        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ses/client.html#delete_custom_verification_email_template)246        """247    def delete_identity(self, *, Identity: str) -> Dict[str, Any]:248        """249        Deletes the specified identity (an email address or a domain) from the list of250        verified identities.251        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ses.html#SES.Client.delete_identity)252        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ses/client.html#delete_identity)253        """254    def delete_identity_policy(self, *, Identity: str, PolicyName: str) -> Dict[str, Any]:255        """...client.py
Source:client.py  
...31    def delete_configuration_set_event_destination(self, ConfigurationSetName: str, EventDestinationName: str) -> Dict:32        pass33    def delete_configuration_set_tracking_options(self, ConfigurationSetName: str) -> Dict:34        pass35    def delete_custom_verification_email_template(self, TemplateName: str):36        pass37    def delete_identity(self, Identity: str) -> Dict:38        pass39    def delete_identity_policy(self, Identity: str, PolicyName: str) -> Dict:40        pass41    def delete_receipt_filter(self, FilterName: str) -> Dict:42        pass43    def delete_receipt_rule(self, RuleSetName: str, RuleName: str) -> Dict:44        pass45    def delete_receipt_rule_set(self, RuleSetName: str) -> Dict:46        pass47    def delete_template(self, TemplateName: str) -> Dict:48        pass49    def delete_verified_email_address(self, EmailAddress: str):...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!!
