createUser method
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.
May throw LimitExceededException. May throw EntityAlreadyExistsException. May throw NoSuchEntityException. May throw InvalidInputException. May throw ConcurrentModificationException. May throw ServiceFailureException.
Parameter userName
:
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".
Parameter 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.
Parameter permissionsBoundary
:
The ARN of the policy that is used to set the permissions boundary for the
user.
Parameter 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.
Implementation
Future<CreateUserResponse> createUser({
required String userName,
String? path,
String? permissionsBoundary,
List<Tag>? tags,
}) async {
ArgumentError.checkNotNull(userName, 'userName');
_s.validateStringLength(
'userName',
userName,
1,
64,
isRequired: true,
);
_s.validateStringLength(
'path',
path,
1,
512,
);
_s.validateStringLength(
'permissionsBoundary',
permissionsBoundary,
20,
2048,
);
final $request = <String, dynamic>{};
$request['UserName'] = userName;
path?.also((arg) => $request['Path'] = arg);
permissionsBoundary?.also((arg) => $request['PermissionsBoundary'] = arg);
tags?.also((arg) => $request['Tags'] = arg);
final $result = await _protocol.send(
$request,
action: 'CreateUser',
version: '2010-05-08',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['CreateUserRequest'],
shapes: shapes,
resultWrapper: 'CreateUserResult',
);
return CreateUserResponse.fromXml($result);
}