Class: Aws::IdentityStore::Types::ListGroupMembershipsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::ListGroupMembershipsResponse
- Defined in:
- gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_memberships ⇒ Array<Types::GroupMembership>
A list of
GroupMembership
objects in the group. -
#next_token ⇒ String
The pagination token used for the
ListUsers
,ListGroups
, andListGroupMemberships
API operations.
Instance Attribute Details
#group_memberships ⇒ Array<Types::GroupMembership>
A list of GroupMembership
objects in the group.
1107 1108 1109 1110 1111 1112 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1107 class ListGroupMembershipsResponse < Struct.new( :group_memberships, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token used for the ListUsers
, ListGroups
, and
ListGroupMemberships
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 it is used in the API request to search for the
next page.
1107 1108 1109 1110 1111 1112 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1107 class ListGroupMembershipsResponse < Struct.new( :group_memberships, :next_token) SENSITIVE = [] include Aws::Structure end |