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.
797 798 799 800 801 802 803 804 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 797 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.
797 798 799 800 801 802 803 804 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 797 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.
797 798 799 800 801 802 803 804 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 797 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token.
797 798 799 800 801 802 803 804 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 797 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |