Class: Aws::RDS::Types::RemoveTagsFromResourceMessage

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

Overview

Note:

When making an API call, you may pass RemoveTagsFromResourceMessage data as a hash:

{
  resource_name: "String", # required
  tag_keys: ["String"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The Amazon RDS resource that the tags are removed from. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see [ Constructing an ARN for Amazon RDS] in the *Amazon RDS User Guide.*

[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing

Returns:

  • (String)


12517
12518
12519
12520
12521
# File 'lib/aws-sdk-rds/types.rb', line 12517

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

#tag_keysArray<String>

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

Returns:

  • (Array<String>)


12517
12518
12519
12520
12521
# File 'lib/aws-sdk-rds/types.rb', line 12517

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