Class: Aws::DatabaseMigrationService::Types::ListTagsForResourceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::ListTagsForResourceMessage
- Defined in:
- gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) string that uniquely identifies the DMS resource to list tags for.
-
#resource_arn_list ⇒ Array<String>
List of ARNs that identify multiple DMS resources that you want to list tags for.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) string that uniquely identifies the DMS resource to list tags for. This returns a list of keys (names of tags) created for the resource and their associated tag values.
7487 7488 7489 7490 7491 7492 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 7487 class ListTagsForResourceMessage < Struct.new( :resource_arn, :resource_arn_list) SENSITIVE = [] include Aws::Structure end |
#resource_arn_list ⇒ Array<String>
List of ARNs that identify multiple DMS resources that you want to
list tags for. This returns a list of keys (tag names) and their
associated tag values. It also returns each tag's associated
ResourceArn value, which is the ARN of the resource for which each
listed tag is created.
7487 7488 7489 7490 7491 7492 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 7487 class ListTagsForResourceMessage < Struct.new( :resource_arn, :resource_arn_list) SENSITIVE = [] include Aws::Structure end |