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, **params) ⇒ CreateIdentity

ignores :reek:FeatureEnvy:



16
17
18
# File 'lib/cognito/client/commands/create_identity.rb', line 16

def initialize(name: OMITTED, phone_number: OMITTED, **params)
  super(params.merge(name: name, phone_number: phone_number))
end