Class: Aws::DirectoryService::Types::EnableSsoRequest

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

Overview

Contains the inputs for the EnableSso operation.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#directory_idString

The identifier of the directory for which to enable single-sign on.

Returns:

  • (String)


2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-directoryservice/types.rb', line 2622

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

#passwordString

The password of an alternate account to use to enable single-sign on. This is only used for AD Connector directories. For more information, see the UserName parameter.

Returns:

  • (String)


2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-directoryservice/types.rb', line 2622

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

#user_nameString

The username of an alternate account to use to enable single-sign on. This is only used for AD Connector directories. This account must have privileges to add a service principal name.

If the AD Connector service account does not have privileges to add a service principal name, you can specify an alternate account with the UserName and Password parameters. These credentials are only used to enable single sign-on and are not stored by the service. The AD Connector service account is not changed.

Returns:

  • (String)


2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-directoryservice/types.rb', line 2622

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