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
ListTagsForResource
call, aNextToken
parameter 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.
4466 4467 4468 4469 4470 4471 4472 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4466 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.
4466 4467 4468 4469 4470 4471 4472 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4466 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.
4466 4467 4468 4469 4470 4471 4472 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4466 class ListTagsForResourceResponse < Struct.new( :arn, :next_token, :tags) SENSITIVE = [] include Aws::Structure end |