Class: Aws::CognitoIdentityProvider::Types::SignUpResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::SignUpResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The response from the server for a registration request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_delivery_details ⇒ Types::CodeDeliveryDetailsType
The code delivery details returned by the server response to the user registration request.
-
#user_confirmed ⇒ Boolean
A response from the server indicating that a user registration has been confirmed.
-
#user_sub ⇒ String
The 128-bit ID of the authenticated user.
Instance Attribute Details
#code_delivery_details ⇒ Types::CodeDeliveryDetailsType
The code delivery details returned by the server response to the user registration request.
8215 8216 8217 8218 8219 8220 8221 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8215 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub) SENSITIVE = [] include Aws::Structure end |
#user_confirmed ⇒ Boolean
A response from the server indicating that a user registration has been confirmed.
8215 8216 8217 8218 8219 8220 8221 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8215 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub) SENSITIVE = [] include Aws::Structure end |
#user_sub ⇒ String
The 128-bit ID of the authenticated user. This isn’t the same as ‘username`.
8215 8216 8217 8218 8219 8220 8221 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8215 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub) SENSITIVE = [] include Aws::Structure end |