Learn R Programming

paws.security.identity (version 0.1.12)

iam_create_user: Creates a new IAM user for your AWS account

Description

Creates a new IAM user for your AWS account.

The number and size of IAM resources in an AWS account are limited. For more information, see IAM and STS Quotas in the IAM User Guide.

Usage

iam_create_user(Path, UserName, PermissionsBoundary, Tags)

Value

A list with the following syntax:

list(
  User = list(
    Path = "string",
    UserName = "string",
    UserId = "string",
    Arn = "string",
    CreateDate = as.POSIXct(
      "2015-01-01"
    ),
    PasswordLastUsed = as.POSIXct(
      "2015-01-01"
    ),
    PermissionsBoundary = list(
      PermissionsBoundaryType = "PermissionsBoundaryPolicy",
      PermissionsBoundaryArn = "string"
    ),
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

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 ! (\u0021) through the DEL character (\u007F), including most punctuation characters, digits, and upper and lowercased letters.

UserName

[required] The name of the user to create.

IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both "MyResource" and "myresource".

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"
    )
  )
)

Examples

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

Run the code above in your browser using DataLab