Class: Aws::DirectoryService::Types::DisableSsoRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::DisableSsoRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Contains the inputs for the DisableSso operation.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#directory_id ⇒ String
The identifier of the directory for which to disable single-sign on.
-
#password ⇒ String
The password of an alternate account to use to disable single-sign on.
-
#user_name ⇒ String
The username of an alternate account to use to disable single-sign on.
Instance Attribute Details
#directory_id ⇒ String
The identifier of the directory for which to disable single-sign on.
2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2477 class DisableSsoRequest < Struct.new( :directory_id, :user_name, :password) SENSITIVE = [:password] include Aws::Structure end |
#password ⇒ String
The password of an alternate account to use to disable single-sign on. This is only used for AD Connector directories. For more information, see the UserName parameter.
2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2477 class DisableSsoRequest < Struct.new( :directory_id, :user_name, :password) SENSITIVE = [:password] include Aws::Structure end |
#user_name ⇒ String
The username of an alternate account to use to disable single-sign on. This is only used for AD Connector directories. This account must have privileges to remove a service principal name.
If the AD Connector service account does not have privileges to remove a service principal name, you can specify an alternate account with the UserName and Password parameters. These credentials are only used to disable single sign-on and are not stored by the service. The AD Connector service account is not changed.
2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 2477 class DisableSsoRequest < Struct.new( :directory_id, :user_name, :password) SENSITIVE = [:password] include Aws::Structure end |