Class: Cognito::Client::Command::CreateIdentity
- Inherits:
-
Cognito::Client::Command
- Object
- Cognito::Client::Command
- Cognito::Client::Command::CreateIdentity
- Includes:
- AbstractType, Mixins::CreateBehavior
- Defined in:
- lib/cognito/client/commands/create_identity.rb
Direct Known Subclasses
Constant Summary collapse
- OMITTED =
Params::Omitted.new
Constants inherited from Cognito::Client::Command
Instance Method Summary collapse
-
#initialize(name: OMITTED, phone_number: OMITTED, ssn: OMITTED, birth: OMITTED, us_address: OMITTED, **params) ⇒ CreateIdentity
constructor
ignores :reek:FeatureEnvy:, :reek:LongParameterList: rubocop:disable ParameterLists, LineLength.
Methods inherited from Cognito::Client::Command
Constructor Details
#initialize(name: OMITTED, phone_number: OMITTED, ssn: OMITTED, birth: OMITTED, us_address: OMITTED, **params) ⇒ CreateIdentity
ignores :reek:FeatureEnvy:, :reek:LongParameterList: rubocop:disable ParameterLists, LineLength
17 18 19 |
# File 'lib/cognito/client/commands/create_identity.rb', line 17 def initialize(name: OMITTED, phone_number: OMITTED, ssn: OMITTED, birth: OMITTED, us_address: OMITTED, **params) super(params.merge(name: name, phone_number: phone_number, ssn: ssn, birth: birth, us_address: us_address)) end |