Class: Aws::IAM::Types::TagRoleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::TagRoleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_name ⇒ String
The name of the IAM role to which you want to add tags.
-
#tags ⇒ Array<Types::Tag>
The list of tags that you want to attach to the IAM role.
Instance Attribute Details
#role_name ⇒ String
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: _+=,.@-
10518 10519 10520 10521 10522 10523 |
# File 'lib/aws-sdk-iam/types.rb', line 10518 class TagRoleRequest < Struct.new( :role_name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<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.
10518 10519 10520 10521 10522 10523 |
# File 'lib/aws-sdk-iam/types.rb', line 10518 class TagRoleRequest < Struct.new( :role_name, :tags) SENSITIVE = [] include Aws::Structure end |