Class: Cognito::Client::Params::IdentitySearch
- Inherits:
-
Identity
- Object
- Cognito::Client::Params
- Identity
- Cognito::Client::Params::IdentitySearch
show all
- Defined in:
- lib/cognito/client/params/identity_search.rb
Constant Summary
collapse
- TYPE =
'identity_search'
- RELATIONSHIP_TYPE =
'profile'
Constants inherited
from Cognito::Client::Params
Omitted
Instance Method Summary
collapse
Methods inherited from Identity
#relationship_params, #to_h
Instance Method Details
#relationships ⇒ Object
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/cognito/client/params/identity_search.rb', line 12
def relationships
{
profile: {
data: {
type: RELATIONSHIP_TYPE,
id: profile_id
}
}
}
end
|