Class: Aws::ApplicationInsights::Types::UntagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the application that you want to remove one or more tags from.

Returns:

  • (String)


1853
1854
1855
1856
1857
1858
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1853

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

#tag_keysArray<String>

The tags (tag keys) that you want to remove from the resource. When you specify a tag key, the action removes both that key and its associated tag value.

To remove more than one tag from the application, append the ‘TagKeys` parameter and argument for each additional tag to remove, separated by an ampersand.

Returns:

  • (Array<String>)


1853
1854
1855
1856
1857
1858
# File 'lib/aws-sdk-applicationinsights/types.rb', line 1853

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