Doc AWS SDK ExamplesWord リポジトリには、さらに多くの GitHub の例があります。 AWS SDK
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
AWS SDK または CLI ListUserPolicies
で使用する
以下のコード例は、ListUserPolicies
の使用方法を示しています。
- CLI
-
- AWS CLI
-
IAM ユーザーのポリシーを一覧表示するには
次の
list-user-policies
コマンドは、 という名前の IAM ユーザーに添付されているポリシーを一覧表示しますBob
。aws iam list-user-policies \ --user-name
Bob
出力:
{ "PolicyNames": [ "ExamplePolicy", "TestPolicy" ] }
詳細については、IAM ユーザーガイド」の AWS 「アカウントでの Word ユーザーの作成」を参照してください。 AWS IAM
-
API の詳細については、AWS CLI 「 コマンドリファレンス」のListUserPolicies
」を参照してください。
-
- Go
-
- Go V2 のSDK
-
注記
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 } // ListUserPolicies lists the inline policies for the specified user. func (wrapper UserWrapper) ListUserPolicies(ctx context.Context, userName string) ([]string, error) { var policies []string result, err := wrapper.IamClient.ListUserPolicies(ctx, &iam.ListUserPoliciesInput{ UserName: aws.String(userName), }) if err != nil { log.Printf("Couldn't list policies for user %v. Here's why: %v\n", userName, err) } else { policies = result.PolicyNames } return policies, err }
-
API の詳細については、ListUserPolicies
AWS SDK for Go リファレンスの API を参照してください。
-
- PowerShell
-
- ツール for PowerShell
-
例 1: この例では、 という名前の IAM ユーザーに組み込まれているインラインポリシーの名前のリストを取得します
David
。Get-IAMUserPolicyList -UserName David
出力:
Davids_IAM_Admin_Policy
-
API の詳細については、「コマンドレットリファレンス」のListUserPolicies」を参照してください。 AWS Tools for PowerShell
-
ListSigningCertificates
ListUserTags