Class: Aws::CognitoIdentityProvider::Types::ChangePasswordRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::ChangePasswordRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to change a user password.
Constant Summary collapse
- SENSITIVE =
[:previous_password, :proposed_password, :access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose password you want to change.
-
#previous_password ⇒ String
The old password.
-
#proposed_password ⇒ String
The new password.
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose password you want to change.
2297 2298 2299 2300 2301 2302 2303 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2297 class ChangePasswordRequest < Struct.new( :previous_password, :proposed_password, :access_token) SENSITIVE = [:previous_password, :proposed_password, :access_token] include Aws::Structure end |
#previous_password ⇒ String
The old password.
2297 2298 2299 2300 2301 2302 2303 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2297 class ChangePasswordRequest < Struct.new( :previous_password, :proposed_password, :access_token) SENSITIVE = [:previous_password, :proposed_password, :access_token] include Aws::Structure end |
#proposed_password ⇒ String
The new password.
2297 2298 2299 2300 2301 2302 2303 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2297 class ChangePasswordRequest < Struct.new( :previous_password, :proposed_password, :access_token) SENSITIVE = [:previous_password, :proposed_password, :access_token] include Aws::Structure end |