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 =
 [:session]
Instance Attribute Summary collapse
- 
  
    
      #code_delivery_details  ⇒ Types::CodeDeliveryDetailsType 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The code delivery details returned by the server response to the user registration request.
 - 
  
    
      #session  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A session Id that you can pass to ‘ConfirmSignUp` when you want to immediately sign in your user with the `USER_AUTH` flow after they complete sign-up.
 - 
  
    
      #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.
      10177 10178 10179 10180 10181 10182 10183 10184  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10177 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub, :session) SENSITIVE = [:session] include Aws::Structure end  | 
  
#session ⇒ String
A session Id that you can pass to ‘ConfirmSignUp` when you want to immediately sign in your user with the `USER_AUTH` flow after they complete sign-up.
      10177 10178 10179 10180 10181 10182 10183 10184  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10177 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub, :session) SENSITIVE = [:session] include Aws::Structure end  | 
  
#user_confirmed ⇒ Boolean
A response from the server indicating that a user registration has been confirmed.
      10177 10178 10179 10180 10181 10182 10183 10184  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10177 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub, :session) SENSITIVE = [:session] include Aws::Structure end  | 
  
#user_sub ⇒ String
The 128-bit ID of the authenticated user. This isn’t the same as ‘username`.
      10177 10178 10179 10180 10181 10182 10183 10184  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10177 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub, :session) SENSITIVE = [:session] include Aws::Structure end  |