Class: Aws::DirectoryService::Types::ResetUserPasswordRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:new_password]

Instance Attribute Summary collapse

Instance Attribute Details

#directory_idString

Identifier of the Managed Microsoft AD or Simple AD directory in which the user resides.

Returns:

  • (String)


3710
3711
3712
3713
3714
3715
3716
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 3710

class ResetUserPasswordRequest < Struct.new(
  :directory_id,
  :user_name,
  :new_password)
  SENSITIVE = [:new_password]
  include Aws::Structure
end

#new_passwordString

The new password that will be reset.

Returns:

  • (String)


3710
3711
3712
3713
3714
3715
3716
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 3710

class ResetUserPasswordRequest < Struct.new(
  :directory_id,
  :user_name,
  :new_password)
  SENSITIVE = [:new_password]
  include Aws::Structure
end

#user_nameString

The user name of the user whose password will be reset.

Returns:

  • (String)


3710
3711
3712
3713
3714
3715
3716
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 3710

class ResetUserPasswordRequest < Struct.new(
  :directory_id,
  :user_name,
  :new_password)
  SENSITIVE = [:new_password]
  include Aws::Structure
end