Class: Aws::CloudHSMV2::Types::ListTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudHSMV2::Types::ListTagsRequest
- Defined in:
- gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of tags to return in the response.
-
#next_token ⇒ String
The
NextToken
value that you received in the previous response. -
#resource_id ⇒ String
The cluster identifier (ID) for the cluster whose tags you are getting.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of tags to return in the response. When there are
more tags than the number you specify, the response contains a
NextToken
value.
974 975 976 977 978 979 980 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 974 class ListTagsRequest < Struct.new( :resource_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The NextToken
value that you received in the previous response.
Use this value to get more tags.
974 975 976 977 978 979 980 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 974 class ListTagsRequest < Struct.new( :resource_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The cluster identifier (ID) for the cluster whose tags you are getting. To find the cluster ID, use DescribeClusters.
974 975 976 977 978 979 980 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 974 class ListTagsRequest < Struct.new( :resource_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |