How to use create_configuration_set_tracking_options method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...164 Creates a configuration set event destination.165 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ses.html#SES.Client.create_configuration_set_event_destination)166 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ses/client.html#create_configuration_set_event_destination)167 """168 def create_configuration_set_tracking_options(169 self, *, ConfigurationSetName: str, TrackingOptions: "TrackingOptionsTypeDef"170 ) -> Dict[str, Any]:171 """172 Creates an association between a configuration set and a custom domain for open173 and click event tracking.174 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ses.html#SES.Client.create_configuration_set_tracking_options)175 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ses/client.html#create_configuration_set_tracking_options)176 """177 def create_custom_verification_email_template(178 self,179 *,180 TemplateName: str,181 FromEmailAddress: str,182 TemplateSubject: str,...

Full Screen

Full Screen

client.py

Source:client.py Github

copy

Full Screen

...13 def create_configuration_set(self, ConfigurationSet: Dict) -> Dict:14 pass15 def create_configuration_set_event_destination(self, ConfigurationSetName: str, EventDestination: Dict) -> Dict:16 pass17 def create_configuration_set_tracking_options(self, ConfigurationSetName: str, TrackingOptions: Dict) -> Dict:18 pass19 def create_custom_verification_email_template(self, TemplateName: str, FromEmailAddress: str, TemplateSubject: str, TemplateContent: str, SuccessRedirectionURL: str, FailureRedirectionURL: str):20 pass21 def create_receipt_filter(self, Filter: Dict) -> Dict:22 pass23 def create_receipt_rule(self, RuleSetName: str, Rule: Dict, After: str = None) -> Dict:24 pass25 def create_receipt_rule_set(self, RuleSetName: str) -> Dict:26 pass27 def create_template(self, Template: Dict) -> Dict:28 pass29 def delete_configuration_set(self, ConfigurationSetName: str) -> Dict:30 pass31 def delete_configuration_set_event_destination(self, ConfigurationSetName: str, EventDestinationName: str) -> Dict:...

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