Best Python code snippet using localstack_python
__init__.py
Source:__init__.py  
...976        self, context: RequestContext, names: MetricStreamNames977    ) -> StartMetricStreamsOutput:978        raise NotImplementedError979    @handler("StopMetricStreams")980    def stop_metric_streams(981        self, context: RequestContext, names: MetricStreamNames982    ) -> StopMetricStreamsOutput:983        raise NotImplementedError984    @handler("TagResource")985    def tag_resource(986        self, context: RequestContext, resource_arn: AmazonResourceName, tags: TagList987    ) -> TagResourceOutput:988        raise NotImplementedError989    @handler("UntagResource")990    def untag_resource(991        self, context: RequestContext, resource_arn: AmazonResourceName, tag_keys: TagKeyList992    ) -> UntagResourceOutput:...client.pyi
Source:client.pyi  
...520        Starts the streaming of metrics for one or more of your metric streams.521        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/cloudwatch.html#CloudWatch.Client.start_metric_streams)522        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/client.html#start_metric_streams)523        """524    def stop_metric_streams(self, *, Names: List[str]) -> Dict[str, Any]:525        """526        Stops the streaming of metrics for one or more of your metric streams.527        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/cloudwatch.html#CloudWatch.Client.stop_metric_streams)528        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/client.html#stop_metric_streams)529        """530    def tag_resource(self, *, ResourceARN: str, Tags: List["TagTypeDef"]) -> Dict[str, Any]:531        """532        Assigns one or more tags (key-value pairs) to the specified CloudWatch resource.533        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/cloudwatch.html#CloudWatch.Client.tag_resource)534        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/client.html#tag_resource)535        """536    def untag_resource(self, *, ResourceARN: str, TagKeys: List[str]) -> Dict[str, Any]:537        """538        Removes one or more tags from the specified resource....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!!
