aws_user_create | R Documentation |
Create a user
aws_user_create(username, path = NULL, permission_boundary = NULL, tags = NULL)
username |
(character) A user name. required |
path |
(character) The path for the user name. optional. If it is not included, it defaults to a slash (/). |
permission_boundary |
(character) The ARN of the managed policy that is used to set the permissions boundary for the user. optional |
tags |
(list) A list of tags that you want to attach to the new user. optional |
See https://www.paws-r-sdk.com/docs/iam_create_user/ docs for details on the parameters
A tibble with information about the user created
Other users:
aws_user()
,
aws_user_access_key()
,
aws_user_access_key_delete()
,
aws_user_add_to_group()
,
aws_user_current()
,
aws_user_delete()
,
aws_user_exists()
,
aws_users()
,
six_user_create()
,
six_user_delete()
user1 <- random_user()
if (aws_user_exists(user1)) {
aws_user_delete(user1)
}
aws_user_create(user1)
# cleanup
aws_user_delete(user1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.