tagUser method

Future<void> tagUser({
  1. required List<Tag> tags,
  2. required String userName,
})

Adds one or more tags to an IAM user. If a tag with the same key name already exists, then that tag is overwritten with the new value.

A tag consists of a key name and an associated value. By assigning tags to your resources, you can do the following:

  • Administrative grouping and discovery - Attach tags to resources to aid in organization and search. For example, you could search for all resources with the key name Project and the value MyImportantProject. Or search for all resources with the key name Cost Center and the value 41200.
  • Access control - Reference tags in IAM user-based and resource-based policies. You can use tags to restrict access to only an IAM requesting user or to a role that has a specified tag attached. You can also restrict access to only those resources that have a certain tag attached. For examples of policies that show how to use tags to control access, see Control Access Using IAM Tags in the IAM User Guide.
  • Cost allocation - Use tags to help track which individuals and teams are using which AWS resources.
For more information about tagging, see Tagging IAM Identities in the IAM User Guide.

May throw NoSuchEntityException. May throw LimitExceededException. May throw InvalidInputException. May throw ConcurrentModificationException. May throw ServiceFailureException.

Parameter tags : The list of tags that you want to attach to the user. Each tag consists of a key name and an associated value.

Parameter userName : The name of the user that you want to add tags to.

This parameter accepts (through its regex pattern) a string of characters that consist of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-

Implementation

Future<void> tagUser({
  required List<Tag> tags,
  required String userName,
}) async {
  ArgumentError.checkNotNull(tags, 'tags');
  ArgumentError.checkNotNull(userName, 'userName');
  _s.validateStringLength(
    'userName',
    userName,
    1,
    128,
    isRequired: true,
  );
  final $request = <String, dynamic>{};
  $request['Tags'] = tags;
  $request['UserName'] = userName;
  await _protocol.send(
    $request,
    action: 'TagUser',
    version: '2010-05-08',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['TagUserRequest'],
    shapes: shapes,
  );
}