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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


10644
10645
10646
10647
10648
10649
# File 'lib/aws-sdk-iam/types.rb', line 10644

class UntagRoleRequest < Struct.new(
  :role_name,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

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


10644
10645
10646
10647
10648
10649
# File 'lib/aws-sdk-iam/types.rb', line 10644

class UntagRoleRequest < Struct.new(
  :role_name,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end