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
Note:
When making an API call, you may pass ListTagsRequest data as a hash:
{
resource_id: "ResourceId", # required
next_token: "NextToken",
max_results: 1,
}
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.
933 934 935 936 937 938 939 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 933 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.
933 934 935 936 937 938 939 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 933 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.
933 934 935 936 937 938 939 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 933 class ListTagsRequest < Struct.new( :resource_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |