Class: Aws::DatabaseMigrationService::Types::AddTagsToResourceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::AddTagsToResourceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Associates a set of tags with an DMS resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
Identifies the DMS resource to which tags should be added.
-
#tags ⇒ Array<Types::Tag>
One or more tags to be assigned to the resource.
Instance Attribute Details
#resource_arn ⇒ String
Identifies the DMS resource to which tags should be added. The value for this parameter is an Amazon Resource Name (ARN).
For DMS, you can tag a replication instance, an endpoint, or a replication task.
68 69 70 71 72 73 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 68 class AddTagsToResourceMessage < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
One or more tags to be assigned to the resource.
68 69 70 71 72 73 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 68 class AddTagsToResourceMessage < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |