Module Values.CertificateBasedAuthPropertiesSource

The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances. Fallback is turned on by default when certificate-based authentication is Enabled . Fallback allows users to log in using their AD domain password if certificate-based authentication is unsuccessful, or to unlock a desktop lock screen. Enabled_no_directory_login_fallback enables certificate-based authentication, but does not allow users to log in using their AD domain password. Users will be disconnected to re-authenticate using certificates.

Sourcetype nonrec t = {
  1. status : CertificateBasedAuthStatus.t option;
    (*

    The status of the certificate-based authentication properties.

    *)
  2. certificateAuthorityArn : Arn.t option;
    (*

    The ARN of the AWS Certificate Manager Private CA resource.

    *)
}
Sourceval make : ?status:??? -> ?certificateAuthorityArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t