Class: Aws::CognitoIdentityProvider::Types::ConfirmSignUpResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#sessionString

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.

Returns:

  • (String)


3424
3425
3426
3427
3428
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3424

class ConfirmSignUpResponse < Struct.new(
  :session)
  SENSITIVE = [:session]
  include Aws::Structure
end