Best Python code snippet using localstack_python
__init__.py
Source:__init__.py  
...2107        remediation_configurations: RemediationConfigurations,2108    ) -> PutRemediationConfigurationsResponse:2109        raise NotImplementedError2110    @handler("PutRemediationExceptions")2111    def put_remediation_exceptions(2112        self,2113        context: RequestContext,2114        config_rule_name: ConfigRuleName,2115        resource_keys: RemediationExceptionResourceKeys,2116        message: StringWithCharLimit1024 = None,2117        expiration_time: Date = None,2118    ) -> PutRemediationExceptionsResponse:2119        raise NotImplementedError2120    @handler("PutResourceConfig")2121    def put_resource_config(2122        self,2123        context: RequestContext,2124        resource_type: ResourceTypeString,2125        schema_version_id: SchemaVersionId,...client.pyi
Source:client.pyi  
...1050        the selected target or action.1051        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.put_remediation_configurations)1052        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#put_remediation_configurations)1053        """1054    def put_remediation_exceptions(1055        self,1056        *,1057        ConfigRuleName: str,1058        ResourceKeys: List["RemediationExceptionResourceKeyTypeDef"],1059        Message: str = None,1060        ExpirationTime: Union[datetime, str] = None1061    ) -> PutRemediationExceptionsResponseTypeDef:1062        """1063        A remediation exception is when a specific resource is no longer considered for1064        auto-remediation.1065        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.put_remediation_exceptions)1066        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#put_remediation_exceptions)1067        """1068    def put_resource_config(...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!!
