Class: Aws::IAM::Types::UntagPolicyRequest

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

#policy_arnString

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

Returns:

  • (String)


10617
10618
10619
10620
10621
10622
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10617

class UntagPolicyRequest < Struct.new(
  :policy_arn,
  :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 policy.

Returns:

  • (Array<String>)


10617
10618
10619
10620
10621
10622
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10617

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