Best Python code snippet using localstack_python
client.pyi
Source:client.pyi
...167 Deletes the specified metric filter.168 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/logs.html#CloudWatchLogs.Client.delete_metric_filter)169 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_logs/client.html#delete_metric_filter)170 """171 def delete_query_definition(172 self, *, queryDefinitionId: str173 ) -> DeleteQueryDefinitionResponseTypeDef:174 """175 Deletes a saved CloudWatch Logs Insights query definition.176 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/logs.html#CloudWatchLogs.Client.delete_query_definition)177 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_logs/client.html#delete_query_definition)178 """179 def delete_resource_policy(self, *, policyName: str = None) -> None:180 """181 Deletes a resource policy from this account.182 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/logs.html#CloudWatchLogs.Client.delete_resource_policy)183 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_logs/client.html#delete_resource_policy)184 """185 def delete_retention_policy(self, *, logGroupName: str) -> None:...
__init__.py
Source:__init__.py
...565 self, context: RequestContext, log_group_name: LogGroupName, filter_name: FilterName566 ) -> None:567 raise NotImplementedError568 @handler("DeleteQueryDefinition")569 def delete_query_definition(570 self, context: RequestContext, query_definition_id: QueryId571 ) -> DeleteQueryDefinitionResponse:572 raise NotImplementedError573 @handler("DeleteResourcePolicy")574 def delete_resource_policy(575 self, context: RequestContext, policy_name: PolicyName = None576 ) -> None:577 raise NotImplementedError578 @handler("DeleteRetentionPolicy")579 def delete_retention_policy(580 self, context: RequestContext, log_group_name: LogGroupName581 ) -> None:582 raise NotImplementedError583 @handler("DeleteSubscriptionFilter")...
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!!