Best Python code snippet using localstack_python
client.pyi
Source:client.pyi
...619 Associates an existing KMS alias with a different KMS key.620 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/kms.html#KMS.Client.update_alias)621 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_kms/client.html#update_alias)622 """623 def update_custom_key_store(624 self,625 *,626 CustomKeyStoreId: str,627 NewCustomKeyStoreName: str = None,628 KeyStorePassword: str = None,629 CloudHsmClusterId: str = None630 ) -> Dict[str, Any]:631 """632 Changes the properties of a custom key store.633 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/kms.html#KMS.Client.update_custom_key_store)634 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_kms/client.html#update_custom_key_store)635 """636 def update_key_description(self, *, KeyId: str, Description: str) -> None:637 """...
client.py
Source:client.py
...92 def untag_resource(self, KeyId: str, TagKeys: List):93 pass94 def update_alias(self, AliasName: str, TargetKeyId: str):95 pass96 def update_custom_key_store(self, CustomKeyStoreId: str, NewCustomKeyStoreName: str = None, KeyStorePassword: str = None, CloudHsmClusterId: str = None) -> Dict:97 pass98 def update_key_description(self, KeyId: str, Description: str):...
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!!