How to use delete_conformance_pack method in localstack

Best Python code snippet using localstack_python

__init__.py

Source:__init__.py Github

copy

Full Screen

...1531 self, context: RequestContext, configuration_recorder_name: RecorderName1532 ) -> None:1533 raise NotImplementedError1534 @handler("DeleteConformancePack")1535 def delete_conformance_pack(1536 self, context: RequestContext, conformance_pack_name: ConformancePackName1537 ) -> None:1538 raise NotImplementedError1539 @handler("DeleteDeliveryChannel")1540 def delete_delivery_channel(1541 self, context: RequestContext, delivery_channel_name: ChannelName1542 ) -> None:1543 raise NotImplementedError1544 @handler("DeleteEvaluationResults")1545 def delete_evaluation_results(1546 self, context: RequestContext, config_rule_name: StringWithCharLimit641547 ) -> DeleteEvaluationResultsResponse:1548 raise NotImplementedError1549 @handler("DeleteOrganizationConfigRule")...

Full Screen

Full Screen

client.pyi

Source:client.pyi Github

copy

Full Screen

...284 Deletes the configuration recorder.285 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.delete_configuration_recorder)286 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#delete_configuration_recorder)287 """288 def delete_conformance_pack(self, *, ConformancePackName: str) -> None:289 """290 Deletes the specified conformance pack and all the Config rules, remediation291 actions, and all evaluation results within that conformance pack.292 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.delete_conformance_pack)293 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#delete_conformance_pack)294 """295 def delete_delivery_channel(self, *, DeliveryChannelName: str) -> None:296 """297 Deletes the delivery channel.298 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/config.html#ConfigService.Client.delete_delivery_channel)299 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_config/client.html#delete_delivery_channel)300 """301 def delete_evaluation_results(self, *, ConfigRuleName: str) -> Dict[str, Any]:302 """...

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