How to use untag_log_group method in localstack

Best Python code snippet using localstack_python

responses.py

Source:responses.py Github

copy

Full Screen

...146 log_group_name = self._get_param("logGroupName")147 tags = self._get_param("tags")148 self.logs_backend.tag_log_group(log_group_name, tags)149 return ""150 def untag_log_group(self):151 log_group_name = self._get_param("logGroupName")152 tags = self._get_param("tags")153 self.logs_backend.untag_log_group(log_group_name, tags)154 return ""155 def describe_subscription_filters(self):156 log_group_name = self._get_param("logGroupName")157 subscription_filters = self.logs_backend.describe_subscription_filters(158 log_group_name159 )160 return json.dumps({"subscriptionFilters": subscription_filters})161 def put_subscription_filter(self):162 log_group_name = self._get_param("logGroupName")163 filter_name = self._get_param("filterName")164 filter_pattern = self._get_param("filterPattern")165 destination_arn = self._get_param("destinationArn")166 role_arn = self._get_param("roleArn")167 self.logs_backend.put_subscription_filter(...

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