Class: Aws::CognitoIdentityProvider::Types::ListUserPoolClientsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ListUserPoolClientsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the response from the server that lists user pool clients.
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_pool_clients ⇒ Array<Types::UserPoolClientDescription>
The user pool clients in the response that lists user pool clients.
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.
7589 7590 7591 7592 7593 7594 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7589 class ListUserPoolClientsResponse < Struct.new( :user_pool_clients, :next_token) SENSITIVE = [] include Aws::Structure end |
#user_pool_clients ⇒ Array<Types::UserPoolClientDescription>
The user pool clients in the response that lists user pool clients.
7589 7590 7591 7592 7593 7594 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7589 class ListUserPoolClientsResponse < Struct.new( :user_pool_clients, :next_token) SENSITIVE = [] include Aws::Structure end |