Class: Aws::IAM::Types::CreateUserRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iam/types.rb

Overview

Note:

When making an API call, you may pass CreateUserRequest data as a hash:

{
  path: "pathType",
  user_name: "userNameType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#pathString

The path for the user name. For more information about paths, see

IAM Identifiers][1

in the *IAM User Guide*.

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

This paramater allows (per 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, containing any ASCII character from the ! (\u0021) thru the DEL character (\u007F), including most punctuation characters, digits, and upper and lowercased letters.

[1]: docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html [2]: wikipedia.org/wiki/regex

Returns:

  • (String)


1324
1325
1326
1327
1328
# File 'lib/aws-sdk-iam/types.rb', line 1324

class CreateUserRequest < Struct.new(
  :path,
  :user_name)
  include Aws::Structure
end

#user_nameString

The name of the user to create.

This parameter allows (per 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”.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


1324
1325
1326
1327
1328
# File 'lib/aws-sdk-iam/types.rb', line 1324

class CreateUserRequest < Struct.new(
  :path,
  :user_name)
  include Aws::Structure
end