Class: Aws::FinSpaceData::Types::ResetUserPasswordResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::FinSpaceData::Types::ResetUserPasswordResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-finspacedata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:temporary_password]
Instance Attribute Summary collapse
-
#temporary_password ⇒ String
A randomly generated temporary password for the requested user.
-
#user_id ⇒ String
The unique identifier of the user that a new password is generated for.
Instance Attribute Details
#temporary_password ⇒ String
A randomly generated temporary password for the requested user. This password expires in 7 days.
2197 2198 2199 2200 2201 2202 |
# File 'lib/aws-sdk-finspacedata/types.rb', line 2197 class ResetUserPasswordResponse < Struct.new( :user_id, :temporary_password) SENSITIVE = [:temporary_password] include Aws::Structure end |
#user_id ⇒ String
The unique identifier of the user that a new password is generated for.
2197 2198 2199 2200 2201 2202 |
# File 'lib/aws-sdk-finspacedata/types.rb', line 2197 class ResetUserPasswordResponse < Struct.new( :user_id, :temporary_password) SENSITIVE = [:temporary_password] include Aws::Structure end |