기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
또는 와 ListKeyPolicies
AWS SDK 함께 사용 CLI
다음 코드 예제는 ListKeyPolicies
의 사용 방법을 보여 줍니다.
- CLI
-
- AWS CLI
-
KMS 키의 키 정책 이름을 가져오려면
다음
list-key-policies
예시에서는 예시 계정 및 리전의 고객 관리형 키에 대한 키 정책 이름을 가져옵니다. 이 명령을 사용하여 AWS 관리형 키 및 고객 관리형 키의 키 정책 이름을 찾을 수 있습니다.유효한 키 정책 이름은
default
뿐이므로 이 명령은 유용하지 않습니다.KMS 키를 지정하려면
key-id
파라미터를 사용합니다. 이 예제에서는 키 ID 값을 사용하지만 이 명령ARN에서 키 ID 또는 키를 사용할 수 있습니다.aws kms list-key-policies \ --key-id
1234abcd-12ab-34cd-56ef-1234567890ab
출력:
{ "PolicyNames": [ "default" ] }
키 정책에 대한 AWS KMS 자세한 내용은 키 AWS 관리 서비스 개발자 안내서의 에서 키 정책 사용을 AWS KMS 참조하세요.
-
자세한 API 내용은 명령 참조ListKeyPolicies
의 섹션을 참조하세요. AWS CLI
-
- Java
-
- SDK Java 2.x용
-
참고
에 대한 자세한 내용은 를 참조하세요 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 Python용(Boto3)
-
참고
에 대한 자세한 내용은 를 참조하세요 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 자세한 내용은 Python(Boto3) 참조 ListKeyPolicies 의 섹션을 참조하세요. AWS SDK API
-
개발자 가이드 및 코드 예제의 AWS SDK 전체 목록은 섹션을 참조하세요AWS SDK와 함께 이 서비스 사용. 이 주제에는 시작하기에 대한 정보와 이전 SDK 버전에 대한 세부 정보도 포함되어 있습니다.