Class: Humidifier::Cognito::UserPoolUser
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::Cognito::UserPoolUser resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#client_metadata ⇒ Object
returns the ClientMetadata property.
-
#client_metadata=(value) ⇒ Object
sets the ClientMetadata property (Json).
-
#desired_delivery_mediums ⇒ Object
returns the DesiredDeliveryMediums property.
-
#desired_delivery_mediums=(value) ⇒ Object
sets the DesiredDeliveryMediums property (List).
-
#force_alias_creation ⇒ Object
returns the ForceAliasCreation property.
-
#force_alias_creation=(value) ⇒ Object
sets the ForceAliasCreation property (Boolean).
-
#message_action ⇒ Object
returns the MessageAction property.
-
#message_action=(value) ⇒ Object
sets the MessageAction property (String).
-
#user_attributes ⇒ Object
returns the UserAttributes property.
-
#user_attributes=(value) ⇒ Object
sets the UserAttributes property (List).
-
#user_pool_id ⇒ Object
returns the UserPoolId property.
-
#user_pool_id=(value) ⇒ Object
sets the UserPoolId property (String).
-
#username ⇒ Object
returns the Username property.
-
#username=(value) ⇒ Object
sets the Username property (String).
-
#validation_data ⇒ Object
returns the ValidationData property.
-
#validation_data=(value) ⇒ Object
sets the ValidationData property (List).
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#client_metadata ⇒ Object
returns the ClientMetadata property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def properties['client_metadata'] end |
#client_metadata=(value) ⇒ Object
sets the ClientMetadata property (Json)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def (value) update_property('client_metadata', value) end |
#desired_delivery_mediums ⇒ Object
returns the DesiredDeliveryMediums property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def desired_delivery_mediums properties['desired_delivery_mediums'] end |
#desired_delivery_mediums=(value) ⇒ Object
sets the DesiredDeliveryMediums property (List)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def desired_delivery_mediums=(value) update_property('desired_delivery_mediums', value) end |
#force_alias_creation ⇒ Object
returns the ForceAliasCreation property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def force_alias_creation properties['force_alias_creation'] end |
#force_alias_creation=(value) ⇒ Object
sets the ForceAliasCreation property (Boolean)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def force_alias_creation=(value) update_property('force_alias_creation', value) end |
#message_action ⇒ Object
returns the MessageAction property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def properties['message_action'] end |
#message_action=(value) ⇒ Object
sets the MessageAction property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def (value) update_property('message_action', value) end |
#user_attributes ⇒ Object
returns the UserAttributes property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def user_attributes properties['user_attributes'] end |
#user_attributes=(value) ⇒ Object
sets the UserAttributes property (List)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def user_attributes=(value) update_property('user_attributes', value) end |
#user_pool_id ⇒ Object
returns the UserPoolId property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def user_pool_id properties['user_pool_id'] end |
#user_pool_id=(value) ⇒ Object
sets the UserPoolId property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def user_pool_id=(value) update_property('user_pool_id', value) end |
#username ⇒ Object
returns the Username property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def username properties['username'] end |
#username=(value) ⇒ Object
sets the Username property (String)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def username=(value) update_property('username', value) end |
#validation_data ⇒ Object
returns the ValidationData property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def validation_data properties['validation_data'] end |
#validation_data=(value) ⇒ Object
sets the ValidationData property (List)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def validation_data=(value) update_property('validation_data', value) end |