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.
8053 8054 8055 8056 8057 8058 8059 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8053 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.
8053 8054 8055 8056 8057 8058 8059 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8053 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`.
8053 8054 8055 8056 8057 8058 8059 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8053 class SignUpResponse < Struct.new( :user_confirmed, :code_delivery_details, :user_sub) SENSITIVE = [] include Aws::Structure end |