AWSCognitoIdentityProviderSignUpResponse

Objective-C

@interface AWSCognitoIdentityProviderSignUpResponse

Swift

class AWSCognitoIdentityProviderSignUpResponse

The response from the server for a registration request.

Required parameters: [UserConfirmed, UserSub]

  • The code delivery details returned by the server response to the user registration request.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSCognitoIdentityProviderCodeDeliveryDetailsType *_Nullable codeDeliveryDetails;

    Swift

    var codeDeliveryDetails: AWSCognitoIdentityProviderCodeDeliveryDetailsType? { get set }
  • A response from the server indicating that a user registration has been confirmed.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable userConfirmed;

    Swift

    var userConfirmed: NSNumber? { get set }
  • The UUID of the authenticated user. This isn’t the same as username.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable userSub;

    Swift

    var userSub: String? { get set }