AttachUserPolicy 搭配 AWS SDK或 使用 CLI - AWS Identity and Access Management

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

AttachUserPolicy 搭配 AWS SDK或 使用 CLI

下列程式碼範例示範如何使用 AttachUserPolicy

動作範例是大型程式的程式碼摘錄,必須在內容中執行。您可以在下列程式碼範例的內容中看到此動作:

CLI
AWS CLI

將受管政策連接至IAM使用者

下列attach-user-policy命令會將名為 AdministratorAccess的 AWS 受管政策連接至名為 IAM的使用者Alice

aws iam attach-user-policy \ --policy-arn arn:aws:iam::aws:policy/AdministratorAccess \ --user-name Alice

此命令不會產生輸出。

如需詳細資訊,請參閱 AWS IAM 使用者指南 中的 受管政策和內嵌政策

  • 如需API詳細資訊,請參閱 命令參考 AttachUserPolicy中的 。 AWS CLI

PowerShell
適用於 的工具 PowerShell

範例 1:此範例會將名為 AmazonCognitoPowerUser的 AWS 受管政策連接至IAM使用者 Bob。使用者會立即受到該政策最新版本中定義的許可影響。

Register-IAMUserPolicy -UserName Bob -PolicyArn arn:aws:iam::aws:policy/AmazonCognitoPowerUser
  • 如需API詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考 AttachUserPolicy中的 。

Python
SDK for Python (Boto3)
注意

還有更多 。 GitHub尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫中設定和執行。

def attach_policy(user_name, policy_arn): """ Attaches a policy to a user. :param user_name: The name of the user. :param policy_arn: The Amazon Resource Name (ARN) of the policy. """ try: iam.User(user_name).attach_policy(PolicyArn=policy_arn) logger.info("Attached policy %s to user %s.", policy_arn, user_name) except ClientError: logger.exception("Couldn't attach policy %s to user %s.", policy_arn, user_name) raise
  • 如需API詳細資訊,請參閱 AttachUserPolicy 中的 AWS SDK for Python (Boto3) API參考

Ruby
SDK 適用於 Ruby
注意

還有更多 。 GitHub尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫中設定和執行。

# Attaches a policy to a user # # @param user_name [String] The name of the user # @param policy_arn [String] The Amazon Resource Name (ARN) of the policy # @return [Boolean] true if successful, false otherwise def attach_policy_to_user(user_name, policy_arn) @iam_client.attach_user_policy( user_name: user_name, policy_arn: policy_arn ) true rescue Aws::IAM::Errors::ServiceError => e @logger.error("Error attaching policy to user: #{e.message}") false end
  • 如需API詳細資訊,請參閱 參考 AttachUserPolicy中的 。 AWS SDK for Ruby API

Rust
SDK for Rust
注意

還有更多 。 GitHub尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫中設定和執行。

pub async fn attach_user_policy( client: &iamClient, user_name: &str, policy_arn: &str, ) -> Result<(), iamError> { client .attach_user_policy() .user_name(user_name) .policy_arn(policy_arn) .send() .await?; Ok(()) }
  • 如需API詳細資訊,請參閱 AttachUserPolicy 中的 AWS SDK for Rust API參考

如需開發人員指南和程式碼範例的完整清單 AWS SDK,請參閱 將此服務與 搭配使用 AWS SDK。本主題也包含入門的相關資訊,以及先前SDK版本的詳細資訊。