Class: Aws::ResourceExplorer2::Types::UntagResourceInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-resourceexplorer2/lib/aws-sdk-resourceexplorer2/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:tag_keys]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the view or index that you want to remove tags from.

Returns:

  • (String)


1320
1321
1322
1323
1324
1325
# File 'gems/aws-sdk-resourceexplorer2/lib/aws-sdk-resourceexplorer2/types.rb', line 1320

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

#tag_keysArray<String>

A list of the keys for the tags that you want to remove from the specified view or index.

Returns:

  • (Array<String>)


1320
1321
1322
1323
1324
1325
# File 'gems/aws-sdk-resourceexplorer2/lib/aws-sdk-resourceexplorer2/types.rb', line 1320

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