AWSCognitoIdentityProviderChangePasswordRequest

Objective-C

@interface AWSCognitoIdentityProviderChangePasswordRequest

Swift

class AWSCognitoIdentityProviderChangePasswordRequest

Represents the request to change a user password.

Required parameters: [PreviousPassword, ProposedPassword, AccessToken]

  • A valid access token that Amazon Cognito issued to the user whose password you want to change.

    Declaration

    Objective-C

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

    Swift

    var accessToken: String? { get set }
  • The old password.

    Declaration

    Objective-C

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

    Swift

    var previousPassword: String? { get set }
  • The new password.

    Declaration

    Objective-C

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

    Swift

    var proposedPassword: String? { get set }