Best Python code snippet using localstack_python
__init__.py
Source:__init__.py
...955 self, context: RequestContext, resource_arn: TranscribeArn, tag_keys: TagKeyList956 ) -> UntagResourceResponse:957 raise NotImplementedError958 @handler("UpdateCallAnalyticsCategory")959 def update_call_analytics_category(960 self, context: RequestContext, category_name: CategoryName, rules: RuleList961 ) -> UpdateCallAnalyticsCategoryResponse:962 raise NotImplementedError963 @handler("UpdateMedicalVocabulary")964 def update_medical_vocabulary(965 self,966 context: RequestContext,967 vocabulary_name: VocabularyName,968 language_code: LanguageCode,969 vocabulary_file_uri: Uri,970 ) -> UpdateMedicalVocabularyResponse:971 raise NotImplementedError972 @handler("UpdateVocabulary")973 def update_vocabulary(...
client.pyi
Source:client.pyi
...472 Removes the specified tags from the specified Amazon Transcribe resource.473 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/transcribe.html#TranscribeService.Client.untag_resource)474 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_transcribe/client.html#untag_resource)475 """476 def update_call_analytics_category(477 self, *, CategoryName: str, Rules: List["RuleTypeDef"]478 ) -> UpdateCallAnalyticsCategoryResponseTypeDef:479 """480 Updates the specified Call Analytics category with new rules.481 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/transcribe.html#TranscribeService.Client.update_call_analytics_category)482 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_transcribe/client.html#update_call_analytics_category)483 """484 def update_medical_vocabulary(485 self, *, VocabularyName: str, LanguageCode: LanguageCodeType, VocabularyFileUri: str486 ) -> UpdateMedicalVocabularyResponseTypeDef:487 """488 Updates an existing custom medical vocabulary with new values.489 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/transcribe.html#TranscribeService.Client.update_medical_vocabulary)490 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_transcribe/client.html#update_medical_vocabulary)...
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!!