Class: Aws::RDS::Types::RemoveTagsFromResourceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::RemoveTagsFromResourceMessage
- Defined in:
- gems/aws-sdk-rds/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
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_name ⇒ String
The Amazon RDS resource that the tags are removed from.
-
#tag_keys ⇒ Array<String>
The tag key (name) of the tag to be removed.
Instance Attribute Details
#resource_name ⇒ String
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.
18839 18840 18841 18842 18843 18844 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 18839 class RemoveTagsFromResourceMessage < Struct.new( :resource_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tag key (name) of the tag to be removed.
18839 18840 18841 18842 18843 18844 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 18839 class RemoveTagsFromResourceMessage < Struct.new( :resource_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |