Class: Aws::FinSpaceData::Types::ResetUserPasswordResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:temporary_password]

Instance Attribute Summary collapse

Instance Attribute Details

#temporary_passwordString

A randomly generated temporary password for the requested user. This password expires in 7 days.

Returns:

  • (String)


2197
2198
2199
2200
2201
2202
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 2197

class ResetUserPasswordResponse < Struct.new(
  :user_id,
  :temporary_password)
  SENSITIVE = [:temporary_password]
  include Aws::Structure
end

#user_idString

The unique identifier of the user that a new password is generated for.

Returns:

  • (String)


2197
2198
2199
2200
2201
2202
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 2197

class ResetUserPasswordResponse < Struct.new(
  :user_id,
  :temporary_password)
  SENSITIVE = [:temporary_password]
  include Aws::Structure
end