Class: Aws::XRay::Types::ListTagsForResourceResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::ListTagsForResourceResponse
- Defined in:
- gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A pagination token.
-
#tags ⇒ Array<Types::Tag>
A list of tags, as key and value pairs, that is associated with the specified X-Ray group or sampling rule.
Instance Attribute Details
#next_token ⇒ String
A pagination token. If multiple pages of results are returned, use
the NextToken
value returned with the current page of results to
get the next page of results.
2040 2041 2042 2043 2044 2045 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2040 class ListTagsForResourceResponse < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags, as key and value pairs, that is associated with the specified X-Ray group or sampling rule.
2040 2041 2042 2043 2044 2045 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2040 class ListTagsForResourceResponse < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |