Best Python code snippet using localstack_python
client.pyi
Source:client.pyi  
...1132        selected to record in your Amazon Web Services account.1133        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.start_configuration_recorder)1134        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#start_configuration_recorder)1135        """1136    def start_remediation_execution(1137        self, *, ConfigRuleName: str, ResourceKeys: List["ResourceKeyTypeDef"]1138    ) -> StartRemediationExecutionResponseTypeDef:1139        """1140        Runs an on-demand remediation for the specified Config rules against the last1141        known remediation configuration.1142        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.start_remediation_execution)1143        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#start_remediation_execution)1144        """1145    def stop_configuration_recorder(self, *, ConfigurationRecorderName: str) -> None:1146        """1147        Stops recording configurations of the Amazon Web Services resources you have1148        selected to record in your Amazon Web Services account.1149        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.stop_configuration_recorder)1150        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#stop_configuration_recorder)...client.py
Source:client.py  
...118    def start_config_rules_evaluation(self, ConfigRuleNames: List = None) -> Dict:119        pass120    def start_configuration_recorder(self, ConfigurationRecorderName: str):121        pass122    def start_remediation_execution(self, ConfigRuleName: str, ResourceKeys: List) -> Dict:123        pass124    def stop_configuration_recorder(self, ConfigurationRecorderName: str):125        pass126    def tag_resource(self, ResourceArn: str, Tags: List):127        pass128    def untag_resource(self, ResourceArn: str, TagKeys: List):...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!!
