文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
ListKeyPolicies
搭配 a AWS SDK 或 CLI 使用
下列程式碼範例示範如何使用 ListKeyPolicies
。
- CLI
-
- AWS CLI
-
若要取得 KMS 金鑰的金鑰政策名稱
下列
list-key-policies
範例會取得範例帳戶和區域中客戶受管金鑰之金鑰政策的名稱。您可以使用此命令來尋找 AWS 受管金鑰和客戶受管金鑰的金鑰政策名稱。由於唯一有效的金鑰政策名稱是
default
,因此此命令沒有用。若要指定 KMS 金鑰,請使用
key-id
參數。此範例使用金鑰 ID 值,但您可以在此命令中使用金鑰 ID 或金鑰 ARN。aws kms list-key-policies \ --key-id
1234abcd-12ab-34cd-56ef-1234567890ab
輸出:
{ "PolicyNames": [ "default" ] }
如需有關 AWS KMS 金鑰政策的詳細資訊,請參閱 金鑰管理服務開發人員指南中的使用 in AWS KMS 金鑰政策。 AWS
-
如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 ListKeyPolicies
。
-
- Java
-
- Java 2.x 的 SDK
-
注意
還有更多 on GitHub。尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 /** * Asynchronously retrieves the key policy for the specified key ID and policy name. * * @param keyId the ID of the AWS KMS key for which to retrieve the policy * @param policyName the name of the key policy to retrieve * @return a {@link CompletableFuture} that, when completed, contains the key policy as a {@link String} */ public CompletableFuture<String> getKeyPolicyAsync(String keyId, String policyName) { GetKeyPolicyRequest policyRequest = GetKeyPolicyRequest.builder() .keyId(keyId) .policyName(policyName) .build(); return getAsyncClient().getKeyPolicy(policyRequest) .thenApply(response -> { String policy = response.policy(); logger.info("The response is: " + policy); return policy; }) .exceptionally(ex -> { throw new RuntimeException("Failed to get key policy", ex); }); }
-
如需 API 詳細資訊,請參閱 ListKeyPolicies AWS SDK for Java 2.x 參考中的 API。
-
- Python
-
- SDK for Python (Boto3)
-
注意
還有更多 on GitHub。尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 class KeyPolicy: def __init__(self, kms_client): self.kms_client = kms_client @classmethod def from_client(cls) -> "KeyPolicy": """ Creates a KeyPolicy instance with a default KMS client. :return: An instance of KeyPolicy initialized with the default KMS client. """ kms_client = boto3.client("kms") return cls(kms_client) def list_policies(self, key_id): """ Lists the names of the policies for a key. :param key_id: The ARN or ID of the key to query. """ try: policy_names = self.kms_client.list_key_policies(KeyId=key_id)[ "PolicyNames" ] except ClientError as err: logging.error( "Couldn't list your policies. Here's why: %s", err.response["Error"]["Message"], ) raise else: print(f"The policies for key {key_id} are:") pprint(policy_names)
-
如需 API 詳細資訊,請參閱 ListKeyPolicies AWS SDK for Python (Boto3) Word 參考中的 API。
-
ListGrants
ListKeys