Class: Cognito::Client::Command::CreateIdentity

Inherits:
Cognito::Client::Command show all
Includes:
AbstractType, Mixins::CreateBehavior
Defined in:
lib/cognito/client/commands/create_identity.rb

Constant Summary collapse

OMITTED =
Params::Omitted.new

Constants inherited from Cognito::Client::Command

Failed

Instance Method Summary collapse

Methods inherited from Cognito::Client::Command

#run

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