Class: Aws::Organizations::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-organizations/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

The ID of the resource to remove a tag from.

You can specify any of the following taggable resources.

  • Amazon Web Services account – specify the account ID number.

  • Organizational unit – specify the OU ID that begins with ‘ou-` and looks similar to: `ou-1a2b-34uvwxyz `

  • Root – specify the root ID that begins with ‘r-` and looks similar to: `r-1a2b `

  • Policy – specify the policy ID that begins with ‘p-` andlooks similar to: `p-12abcdefg3 `

Returns:

  • (String)


4634
4635
4636
4637
4638
4639
# File 'lib/aws-sdk-organizations/types.rb', line 4634

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

#tag_keysArray<String>

The list of keys for tags to remove from the specified resource.

Returns:

  • (Array<String>)


4634
4635
4636
4637
4638
4639
# File 'lib/aws-sdk-organizations/types.rb', line 4634

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