Class: Aws::Transfer::Types::ListTagsForResourceResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListTagsForResourceResponse
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN you specified to list the tags of.
-
#next_token ⇒ String
When you can get additional results from the
ListTagsForResourcecall, aNextTokenparameter is returned in the output. -
#tags ⇒ Array<Types::Tag>
Key-value pairs that are assigned to a resource, usually for the purpose of grouping and searching for items.
Instance Attribute Details
#arn ⇒ String
The ARN you specified to list the tags of.
4845 4846 4847 4848 4849 4850 4851 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4845 class ListTagsForResourceResponse < Struct.new( :arn, :next_token, :tags) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When you can get additional results from the ListTagsForResource
call, a NextToken parameter is returned in the output. You can
then pass in a subsequent command to the NextToken parameter to
continue listing additional tags.
4845 4846 4847 4848 4849 4850 4851 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4845 class ListTagsForResourceResponse < Struct.new( :arn, :next_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Key-value pairs that are assigned to a resource, usually for the purpose of grouping and searching for items. Tags are metadata that you define.
4845 4846 4847 4848 4849 4850 4851 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4845 class ListTagsForResourceResponse < Struct.new( :arn, :next_token, :tags) SENSITIVE = [] include Aws::Structure end |