Doc AWS SDK 예제 GitHub 리포지토리에서 더 많은 SDK 예제를 사용할 수 있습니다. AWS
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
AWS SDK 또는 CLI와 DeleteUserPolicy 함께 사용
다음 코드 예시는 DeleteUserPolicy의 사용 방법을 보여 줍니다.
작업 예제는 대규모 프로그램에서 발췌한 코드이며 컨텍스트에 맞춰 실행해야 합니다. 다음 코드 예제에서는 컨텍스트 내에서 이 작업을 확인할 수 있습니다.
- .NET
-
- SDK for .NET
-
참고
GitHub에 더 많은 내용이 있습니다. AWS 코드 예 리포지토리
에서 전체 예를 찾고 설정 및 실행하는 방법을 배워보세요. /// <summary> /// Delete an IAM user policy. /// </summary> /// <param name="policyName">The name of the IAM policy to delete.</param> /// <param name="userName">The username of the IAM user.</param> /// <returns>A Boolean value indicating the success of the action.</returns> public async Task<bool> DeleteUserPolicyAsync(string policyName, string userName) { var response = await _IAMService.DeleteUserPolicyAsync(new DeleteUserPolicyRequest { PolicyName = policyName, UserName = userName }); return response.HttpStatusCode == System.Net.HttpStatusCode.OK; }-
API 세부 정보는 AWS SDK for .NET API 참조의 DeleteUserPolicy를 참조하십시오.
-
- CLI
-
- AWS CLI
-
IAM 사용자에서 정책 제거
다음
delete-user-policy명령은 이름이Bob인 IAM 사용자에서 지정된 정책을 제거합니다.aws iam delete-user-policy \ --user-nameBob\ --policy-nameExamplePolicy이 명령은 출력을 생성하지 않습니다.
IAM 사용자의 정책 목록을 가져오려면
list-user-policies명령을 사용합니다.자세한 내용은 IAM 사용 설명서의 AWS 계정에서 IAM 사용자 생성을 참조하세요. AWS
-
API 세부 정보는 AWS CLI 명령 참조의 DeleteUserPolicy
를 참조하세요.
-
- Go
-
- SDK for Go V2
-
참고
GitHub에 더 많은 내용이 있습니다. AWS 코드 예 리포지토리
에서 전체 예를 찾고 설정 및 실행하는 방법을 배워보세요. import ( "context" "encoding/json" "errors" "log" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/aws/smithy-go" ) // UserWrapper encapsulates user actions used in the examples. // It contains an IAM service client that is used to perform user actions. type UserWrapper struct { IamClient *iam.Client } // DeleteUserPolicy deletes an inline policy from a user. func (wrapper UserWrapper) DeleteUserPolicy(ctx context.Context, userName string, policyName string) error { _, err := wrapper.IamClient.DeleteUserPolicy(ctx, &iam.DeleteUserPolicyInput{ PolicyName: aws.String(policyName), UserName: aws.String(userName), }) if err != nil { log.Printf("Couldn't delete policy from user %v. Here's why: %v\n", userName, err) } return err }-
API 세부 정보는 AWS SDK for Go API 참조의 DeleteUserPolicy
를 참조하십시오.
-
- PowerShell
-
- Tools for PowerShell V4
-
예제 1: 이 예제는
Bob이라는 IAM 사용자에게 포함된AccessToEC2Policy라는 인라인 정책을 삭제합니다.Remove-IAMUserPolicy -PolicyName AccessToEC2Policy -UserName Bob예제 2: 이 예제는
Theresa라는 IAM 사용자에게 포함된 모든 인라인 정책을 찾아 삭제합니다.$inlinepols = Get-IAMUserPolicies -UserName Theresa foreach ($pol in $inlinepols) { Remove-IAMUserPolicy -PolicyName $pol -UserName Theresa -Force}-
API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조(V4)의 DeleteUserPolicy를 참조하세요.
-
- Tools for PowerShell V5
-
예제 1: 이 예제는
Bob이라는 IAM 사용자에게 포함된AccessToEC2Policy라는 인라인 정책을 삭제합니다.Remove-IAMUserPolicy -PolicyName AccessToEC2Policy -UserName Bob예제 2: 이 예제는
Theresa라는 IAM 사용자에게 포함된 모든 인라인 정책을 찾아 삭제합니다.$inlinepols = Get-IAMUserPolicies -UserName Theresa foreach ($pol in $inlinepols) { Remove-IAMUserPolicy -PolicyName $pol -UserName Theresa -Force}-
API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조(V5)의 DeleteUserPolicy를 참조하세요.
-
- Ruby
-
- SDK for Ruby
-
참고
GitHub에 더 많은 내용이 있습니다. AWS 코드 예 리포지토리
에서 전체 예를 찾고 설정 및 실행하는 방법을 배워보세요. # Deletes a user and their associated resources # # @param user_name [String] The name of the user to delete def delete_user(user_name) user = @iam_client.list_access_keys(user_name: user_name).access_key_metadata user.each do |key| @iam_client.delete_access_key({ access_key_id: key.access_key_id, user_name: user_name }) @logger.info("Deleted access key #{key.access_key_id} for user '#{user_name}'.") end @iam_client.delete_user(user_name: user_name) @logger.info("Deleted user '#{user_name}'.") rescue Aws::IAM::Errors::ServiceError => e @logger.error("Error deleting user '#{user_name}': #{e.message}") end-
API 세부 정보는 AWS SDK for Ruby API 참조의 DeleteUserPolicy를 참조하십시오.
-
- Rust
-
- SDK for Rust
-
참고
GitHub에 더 많은 내용이 있습니다. AWS 코드 예 리포지토리
에서 전체 예를 찾고 설정 및 실행하는 방법을 배워보세요. pub async fn delete_user_policy( client: &iamClient, user: &User, policy_name: &str, ) -> Result<(), SdkError<DeleteUserPolicyError>> { client .delete_user_policy() .user_name(user.user_name()) .policy_name(policy_name) .send() .await?; Ok(()) }-
API 세부 정보는 AWS SDK for Rust API 참조의 DeleteUserPolicy
을 참조하십시오.
-
- Swift
-
- SDK for Swift
-
참고
GitHub에 더 많은 내용이 있습니다. AWS 코드 예 리포지토리
에서 전체 예를 찾고 설정 및 실행하는 방법을 배워보세요. import AWSIAM import AWSS3 func deleteUserPolicy(user: IAMClientTypes.User, policyName: String) async throws { let input = DeleteUserPolicyInput( policyName: policyName, userName: user.userName ) do { _ = try await iamClient.deleteUserPolicy(input: input) } catch { print("ERROR: deleteUserPolicy:", dump(error)) throw error } }-
API 세부 정보는 AWS SDK for Swift API 참조의 DeleteUserPolicy
를 참조하십시오.
-