Class: Aws::CognitoIdentity::Types::ListIdentitiesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::ListIdentitiesInput
- Defined in:
- gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb
Overview
Note:
When making an API call, you may pass ListIdentitiesInput data as a hash:
{
identity_pool_id: "IdentityPoolId", # required
max_results: 1, # required
next_token: "PaginationKey",
hide_disabled: false,
}
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.
948 949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 948 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.
948 949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 948 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.
948 949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 948 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token.
948 949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 948 class ListIdentitiesInput < Struct.new( :identity_pool_id, :max_results, :next_token, :hide_disabled) SENSITIVE = [] include Aws::Structure end |