Class: Aws::CognitoIdentity::Types::ListIdentitiesInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentity/types.rb

Overview

Input to the ListIdentities action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hide_disabledBoolean

An optional boolean parameter that allows you to hide disabled identities. If omitted, the ListIdentities API will include disabled identities in the response.

Returns:

  • (Boolean)


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_idString

An identity pool ID in the format REGION:GUID.

Returns:

  • (String)


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_resultsInteger

The maximum number of identities to return.

Returns:

  • (Integer)


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_tokenString

A pagination token.

Returns:

  • (String)


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