Describe User Profiles
opsworks_describe_user_profiles | R Documentation |
Describe specified users¶
Description¶
Describe specified users.
Required Permissions: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information about user permissions, see Managing User Permissions.
Usage¶
opsworks_describe_user_profiles(IamUserArns)
Arguments¶
IamUserArns |
An array of IAM or federated user ARNs that identify the users to be described. |
Value¶
A list with the following syntax:
list(
UserProfiles = list(
list(
IamUserArn = "string",
Name = "string",
SshUsername = "string",
SshPublicKey = "string",
AllowSelfManagement = TRUE|FALSE
)
)
)
Request syntax¶
svc$describe_user_profiles(
IamUserArns = list(
"string"
)
)