Class: Aws::IAM::Types::UntagPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UntagPolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_arn ⇒ String
The ARN of the IAM customer managed policy 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
#policy_arn ⇒ String
The ARN of the IAM customer managed policy 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: _+=,.@-
10809 10810 10811 10812 10813 10814 |
# File 'lib/aws-sdk-iam/types.rb', line 10809 class UntagPolicyRequest < Struct.new( :policy_arn, :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 policy.
10809 10810 10811 10812 10813 10814 |
# File 'lib/aws-sdk-iam/types.rb', line 10809 class UntagPolicyRequest < Struct.new( :policy_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |