How to use delete_custom_verification_email_template method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...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 """...

Full Screen

Full Screen

client.py

Source:client.py Github

copy

Full Screen

...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):...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful