Class: Aws::CodeDeploy::Types::ListTagsForResourceOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListTagsForResourceOutput
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
-
#tags ⇒ Array<Types::Tag>
A list of tags returned by
ListTagsForResource
.
Instance Attribute Details
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list application revisions call to return the next set of application revisions in the list.
4030 4031 4032 4033 4034 4035 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4030 class ListTagsForResourceOutput < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags returned by ListTagsForResource
. The tags are
associated with the resource identified by the input ResourceArn
parameter.
4030 4031 4032 4033 4034 4035 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4030 class ListTagsForResourceOutput < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |