Class: Aws::RDS::Types::TagSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::TagSpecification
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
The tags to apply to resources when creating or modifying a DB instance or DB cluster. When you specify a tag, you must specify the resource type to tag, otherwise the request will fail.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_type ⇒ String
The type of resource to tag on creation.
-
#tags ⇒ Array<Types::Tag>
A list of tags.
Instance Attribute Details
#resource_type ⇒ String
The type of resource to tag on creation.
Valid Values:
auto-backup- The DB instance's automated backup.cluster-auto-backup- The DB cluster's automated backup.
30048 30049 30050 30051 30052 30053 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 30048 class TagSpecification < Struct.new( :resource_type, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags.
For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide.
30048 30049 30050 30051 30052 30053 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 30048 class TagSpecification < Struct.new( :resource_type, :tags) SENSITIVE = [] include Aws::Structure end |