Struct rusoto_ds::EnableSsoRequest[][src]

pub struct EnableSsoRequest {
    pub directory_id: String,
    pub password: Option<String>,
    pub user_name: Option<String>,
}

Contains the inputs for the EnableSso operation.

Fields

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

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.

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.

Trait Implementations

impl Default for EnableSsoRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for EnableSsoRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for EnableSsoRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EnableSsoRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations