Class: Aws::Transfer::Types::ListTagsForResourceResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListTagsForResourceResponse
- Includes:
- Structure
- Defined in:
- 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, a `NextToken` 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.
3593 3594 3595 3596 3597 3598 3599 |
# File 'lib/aws-sdk-transfer/types.rb', line 3593 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.
3593 3594 3595 3596 3597 3598 3599 |
# File 'lib/aws-sdk-transfer/types.rb', line 3593 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.
3593 3594 3595 3596 3597 3598 3599 |
# File 'lib/aws-sdk-transfer/types.rb', line 3593 class ListTagsForResourceResponse < Struct.new( :arn, :next_token, :tags) SENSITIVE = [] include Aws::Structure end |