You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IAM::Types::UntagRoleRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UntagRoleRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  role_name: "roleNameType", # required
  tag_keys: ["tagKeyType"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#role_nameString

The name of the IAM role from which you want to remove tags.

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: _+=,.@-

Returns:

  • (String)

    The name of the IAM role from which you want to remove tags.

#tag_keysArray<String>

A list of key names as a simple array of strings. The tags with matching keys are removed from the specified role.

Returns:

  • (Array<String>)

    A list of key names as a simple array of strings.