Class: Aws::OpsWorks::Types::ListTagsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::ListTagsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworks/types.rb
Overview
Contains the response to a ‘ListTags` request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If a paginated request does not return all of the remaining results, this parameter is set to a token that you can assign to the request object’s ‘NextToken` parameter to get the next set of results.
-
#tags ⇒ Hash<String,String>
A set of key-value pairs that contain tag keys and tag values that are attached to a stack or layer.
Instance Attribute Details
#next_token ⇒ String
If a paginated request does not return all of the remaining results, this parameter is set to a token that you can assign to the request object’s ‘NextToken` parameter to get the next set of results. If the previous paginated request returned all of the remaining results, this parameter is set to `null`.
3989 3990 3991 3992 3993 3994 |
# File 'lib/aws-sdk-opsworks/types.rb', line 3989 class ListTagsResult < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A set of key-value pairs that contain tag keys and tag values that are attached to a stack or layer.
3989 3990 3991 3992 3993 3994 |
# File 'lib/aws-sdk-opsworks/types.rb', line 3989 class ListTagsResult < Struct.new( :tags, :next_token) SENSITIVE = [] include Aws::Structure end |