

文件 AWS 開發套件範例 GitHub 儲存庫中有更多可用的 [AWS SDK 範例](https://github.com/awsdocs/aws-doc-sdk-examples)。

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# AWS KMS 使用 AWS SDKs程式碼範例
<a name="kms_code_examples"></a>

下列程式碼範例示範如何使用 AWS Key Management Service 搭配 AWS 軟體開發套件 (SDK)。

*基本概念*是程式碼範例，這些範例說明如何在服務內執行基本操作。

*Actions* 是大型程式的程式碼摘錄，必須在內容中執行。雖然動作會告訴您如何呼叫個別服務函數，但您可以在其相關情境中查看內容中的動作。

*案例*是向您展示如何呼叫服務中的多個函數或與其他 AWS 服務組合來完成特定任務的程式碼範例。

**其他資源**
+  **[AWS KMS 開發人員指南](https://docs.aws.amazon.com/kms/latest/developerguide/overview.html)** – 有關 的詳細資訊 AWS KMS。
+ **[AWS KMS API 參考](https://docs.aws.amazon.com/kms/latest/APIReference/Welcome.html)** – 所有可用 AWS KMS 動作的詳細資訊。
+ **[AWS 開發人員中心](https://aws.amazon.com/developer/code-examples/?awsf.sdk-code-examples-product=product%23key-mgmt-service)** – 您可以依類別或全文搜尋篩選的程式碼範例。
+ **[AWS SDK 範例](https://github.com/awsdocs/aws-doc-sdk-examples)** – GitHub 儲存庫使用慣用語言的完整程式碼。包含設定和執行程式碼的指示。

**Contents**
+ [基本概念](kms_code_examples_basics.md)
  + [您好 AWS KMS](kms_example_kms_Hello_section.md)
  + [了解基本概念](kms_example_kms_Scenario_Basics_section.md)
  + [動作](kms_code_examples_actions.md)
    + [`CreateAlias`](kms_example_kms_CreateAlias_section.md)
    + [`CreateGrant`](kms_example_kms_CreateGrant_section.md)
    + [`CreateKey`](kms_example_kms_CreateKey_section.md)
    + [`Decrypt`](kms_example_kms_Decrypt_section.md)
    + [`DeleteAlias`](kms_example_kms_DeleteAlias_section.md)
    + [`DescribeKey`](kms_example_kms_DescribeKey_section.md)
    + [`DisableKey`](kms_example_kms_DisableKey_section.md)
    + [`EnableKey`](kms_example_kms_EnableKey_section.md)
    + [`EnableKeyRotation`](kms_example_kms_EnableKeyRotation_section.md)
    + [`Encrypt`](kms_example_kms_Encrypt_section.md)
    + [`GenerateDataKey`](kms_example_kms_GenerateDataKey_section.md)
    + [`GenerateDataKeyWithoutPlaintext`](kms_example_kms_GenerateDataKeyWithoutPlaintext_section.md)
    + [`GenerateRandom`](kms_example_kms_GenerateRandom_section.md)
    + [`GetKeyPolicy`](kms_example_kms_GetKeyPolicy_section.md)
    + [`ListAliases`](kms_example_kms_ListAliases_section.md)
    + [`ListGrants`](kms_example_kms_ListGrants_section.md)
    + [`ListKeyPolicies`](kms_example_kms_ListKeyPolicies_section.md)
    + [`ListKeys`](kms_example_kms_ListKeys_section.md)
    + [`PutKeyPolicy`](kms_example_kms_PutKeyPolicy_section.md)
    + [`ReEncrypt`](kms_example_kms_ReEncrypt_section.md)
    + [`RetireGrant`](kms_example_kms_RetireGrant_section.md)
    + [`RevokeGrant`](kms_example_kms_RevokeGrant_section.md)
    + [`ScheduleKeyDeletion`](kms_example_kms_ScheduleKeyDeletion_section.md)
    + [`Sign`](kms_example_kms_Sign_section.md)
    + [`TagResource`](kms_example_kms_TagResource_section.md)
    + [`UpdateAlias`](kms_example_kms_UpdateAlias_section.md)
    + [`Verify`](kms_example_kms_Verify_section.md)
+ [案例](kms_code_examples_scenarios.md)
  + [使用資料表加密](kms_example_dynamodb_Scenario_EncryptionExamples_section.md)