Class: Aws::CognitoIdentityProvider::Types::ConfirmSignUpResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ConfirmSignUpResponse
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the response from the server for the registration confirmation.
Constant Summary collapse
- SENSITIVE =
[:session]
Instance Attribute Summary collapse
-
#session ⇒ String
A session identifier that you can use to immediately sign in the confirmed user.
Instance Attribute Details
#session ⇒ String
A session identifier that you can use to immediately sign in the
confirmed user. You can automatically sign users in with the
one-time password that they provided in a successful ConfirmSignUp
request. To do this, pass the Session
parameter from this response
in the Session
parameter of an InitiateAuth or
AdminInitiateAuth request.
3472 3473 3474 3475 3476 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3472 class ConfirmSignUpResponse < Struct.new( :session) SENSITIVE = [:session] include Aws::Structure end |