Class: Aws::DocDB::Types::RemoveTagsFromResourceMessage

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

Overview

Represents the input to RemoveTagsFromResource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The Amazon DocumentDB resource that the tags are removed from. This value is an Amazon Resource Name (ARN).

Returns:

  • (String)


5034
5035
5036
5037
5038
5039
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5034

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

#tag_keysArray<String>

The tag key (name) of the tag to be removed.

Returns:

  • (Array<String>)


5034
5035
5036
5037
5038
5039
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5034

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