Class: Aws::CognitoIdentity::Types::ListIdentitiesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::ListIdentitiesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Input to the ListIdentities action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hide_disabled ⇒ Boolean
An optional boolean parameter that allows you to hide disabled identities.
-
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
-
#max_results ⇒ Integer
The maximum number of identities to return.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#hide_disabled ⇒ Boolean
An optional boolean parameter that allows you to hide disabled identities. If omitted, the ListIdentities API will include disabled identities in the response.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 788 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 788 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of identities to return.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 788 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token.
788 789 790 791 792 793 794 795 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 788 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |