paws.security.identity (version 0.1.0)

iam_create_user: Creates a new IAM user for your AWS account

Description

Creates a new IAM user for your AWS account.

Usage

iam_create_user(Path, UserName, PermissionsBoundary, Tags)

Arguments

Path

The path for the user name. For more information about paths, see IAM Identifiers in the IAM User Guide.

This parameter is optional. If it is not included, it defaults to a slash (/).

This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (U+0021) through the DEL character (U+007F), including most punctuation characters, digits, and upper and lowercased letters.

UserName

[required] The name of the user to create.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: \_+=,.@-. User names are not distinguished by case. For example, you cannot create users named both "TESTUSER" and "testuser".

PermissionsBoundary

The ARN of the policy that is used to set the permissions boundary for the user.

Tags

A list of tags that you want to attach to the newly created user. Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM Identities in the IAM User Guide.

If any one of the tags is invalid or if you exceed the allowed number of tags per user, then the entire request fails and the user is not created.

Request syntax

svc$create_user(
  Path = "string",
  UserName = "string",
  PermissionsBoundary = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Details

For information about limitations on the number of IAM users you can create, see Limitations on IAM Entities in the IAM User Guide.

Examples

Run this code
# NOT RUN {
# The following create-user command creates an IAM user named Bob in the
# current account.
# }
# NOT RUN {
svc$create_user(
  UserName = "Bob"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab