Class: Aws::CodePipeline::Types::ListTagsForResourceOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListTagsForResourceOutput
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequent API call to return the next page of the list.
-
#tags ⇒ Array<Types::Tag>
The tags for the resource.
Instance Attribute Details
#next_token ⇒ String
If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequent API call to return the next page of the list. The ListTagsforResource call lists all available tags in one call and does not use pagination.
3000 3001 3002 3003 3004 3005 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3000 class ListTagsForResourceOutput < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags for the resource.
3000 3001 3002 3003 3004 3005 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 3000 class ListTagsForResourceOutput < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |