Class: Aws::CognitoIdentityProvider::Types::ListUserPoolsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ListUserPoolsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the response to list user pools.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
-
#user_pools ⇒ Array<Types::UserPoolDescriptionType>
The user pools from the response to list users.
Instance Attribute Details
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
6422 6423 6424 6425 6426 6427 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6422 class ListUserPoolsResponse < Struct.new( :user_pools, :next_token) SENSITIVE = [] include Aws::Structure end |
#user_pools ⇒ Array<Types::UserPoolDescriptionType>
The user pools from the response to list users.
6422 6423 6424 6425 6426 6427 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6422 class ListUserPoolsResponse < Struct.new( :user_pools, :next_token) SENSITIVE = [] include Aws::Structure end |