Class: Aws::IAM::Types::UntagInstanceProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UntagInstanceProfileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_profile_name ⇒ String
The name of the IAM instance profile from which you want to remove tags.
-
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings.
Instance Attribute Details
#instance_profile_name ⇒ String
The name of the IAM instance profile from which you want to remove tags.
This parameter allows (through its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
10778 10779 10780 10781 10782 10783 |
# File 'lib/aws-sdk-iam/types.rb', line 10778 class UntagInstanceProfileRequest < Struct.new( :instance_profile_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings. The tags with matching keys are removed from the specified instance profile.
10778 10779 10780 10781 10782 10783 |
# File 'lib/aws-sdk-iam/types.rb', line 10778 class UntagInstanceProfileRequest < Struct.new( :instance_profile_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |