Class: Aws::IdentityStore::Types::ListGroupsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::ListGroupsResponse
- Defined in:
- gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#groups ⇒ Array<Types::Group>
A list of
Group
objects in the identity store. -
#next_token ⇒ String
The pagination token used for the
ListUsers
andListGroups
API operations.
Instance Attribute Details
#groups ⇒ Array<Types::Group>
A list of Group
objects in the identity store.
1167 1168 1169 1170 1171 1172 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1167 class ListGroupsResponse < Struct.new( :groups, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token used for the ListUsers
and ListGroups
API
operations. This value is generated by the identity store service.
It is returned in the API response if the total results are more
than the size of one page. This token is also returned when it1 is
used in the API request to search for the next page.
1167 1168 1169 1170 1171 1172 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1167 class ListGroupsResponse < Struct.new( :groups, :next_token) SENSITIVE = [] include Aws::Structure end |