本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
DeleteVocabulary
搭配 AWS SDK或 使用 CLI
下列程式碼範例示範如何使用 DeleteVocabulary
。
動作範例是大型程式的程式碼摘錄,必須在內容中執行。您可以在下列程式碼範例的內容中看到此動作:
- .NET
-
- AWS SDK for .NET
-
注意
還有更多 。 GitHub尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 /// <summary> /// Delete an existing custom vocabulary. /// </summary> /// <param name="vocabularyName">Name of the vocabulary to delete.</param> /// <returns>True if successful.</returns> public async Task<bool> DeleteCustomVocabulary(string vocabularyName) { var response = await _amazonTranscribeService.DeleteVocabularyAsync( new DeleteVocabularyRequest { VocabularyName = vocabularyName }); return response.HttpStatusCode == HttpStatusCode.OK; }
-
如需API詳細資訊,請參閱 參考 DeleteVocabulary中的 。 AWS SDK for .NET API
-
- CLI
-
- AWS CLI
-
刪除自訂詞彙
以下
delete-vocabulary
範例會刪除自訂詞彙。aws transcribe delete-vocabulary \ --
vocabulary-name
vocabulary-name此命令不會產生輸出。
如需詳細資訊,請參閱《Amazon Transcribe 開發人員指南》中的自訂詞彙。
-
如需API詳細資訊,請參閱 命令參考 DeleteVocabulary
中的 。 AWS CLI
-
- Python
-
- SDK for Python (Boto3)
-
注意
還有更多 。 GitHub尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 def delete_vocabulary(vocabulary_name, transcribe_client): """ Deletes a custom vocabulary. :param vocabulary_name: The name of the vocabulary to delete. :param transcribe_client: The Boto3 Transcribe client. """ try: transcribe_client.delete_vocabulary(VocabularyName=vocabulary_name) logger.info("Deleted vocabulary %s.", vocabulary_name) except ClientError: logger.exception("Couldn't delete vocabulary %s.", vocabulary_name) raise
-
如需API詳細資訊,請參閱 DeleteVocabulary 中的 AWS SDK for Python (Boto3) API參考 。
-
如需開發人員指南和程式碼範例的完整清單 AWS SDK,請參閱 搭配 AWS SDK 使用此服務。本主題也包含入門的相關資訊,以及先前SDK版本的詳細資訊。
DeleteTranscriptionJob
GetTranscriptionJob