Class: Aws::RDS::Types::AddTagsToResourceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::AddTagsToResourceMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass AddTagsToResourceMessage data as a hash:
{
resource_name: "String", # required
tags: [ # required
{
key: "String",
value: "String",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_name ⇒ String
The Amazon RDS resource that the tags are added to.
-
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the Amazon RDS resource.
Instance Attribute Details
#resource_name ⇒ String
The Amazon RDS resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).
307 308 309 310 311 312 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 307 class AddTagsToResourceMessage < Struct.new( :resource_name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the Amazon RDS resource.
307 308 309 310 311 312 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 307 class AddTagsToResourceMessage < Struct.new( :resource_name, :tags) SENSITIVE = [] include Aws::Structure end |