Class: Aws::IAM::Types::TagRoleRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/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 to which you want to add 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)


10326
10327
10328
10329
10330
10331
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10326

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

#tagsArray<Types::Tag>

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

Returns:



10326
10327
10328
10329
10330
10331
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10326

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