Module Values.DescribeClientAuthenticationSettingsResultSource

Retrieves information about the type of client authentication for the specified directory, if the type is specified. If no type is specified, information about all client authentication types that are supported for the specified directory is retrieved. Currently, only SmartCard is supported.

Sourcetype nonrec t = {
  1. clientAuthenticationSettingsInfo : ClientAuthenticationSettingsInfo.t option;
    (*

    Information about the type of client authentication for the specified directory. The following information is retrieved: The date and time when the status of the client authentication type was last updated, whether the client authentication type is enabled or disabled, and the type of client authentication.

    *)
  2. nextToken : NextToken.t option;
    (*

    The next token used to retrieve the client authentication settings if the number of setting types exceeds page limit and there is another page.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ClientException of ClientException.t
  3. | `DirectoryDoesNotExistException of DirectoryDoesNotExistException.t
  4. | `InvalidParameterException of InvalidParameterException.t
  5. | `ServiceException of ServiceException.t
  6. | `UnsupportedOperationException of UnsupportedOperationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?clientAuthenticationSettingsInfo:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `DirectoryDoesNotExistException of DirectoryDoesNotExistException.t | `InvalidParameterException of InvalidParameterException.t | `ServiceException of ServiceException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `DirectoryDoesNotExistException of DirectoryDoesNotExistException.t | `InvalidParameterException of InvalidParameterException.t | `ServiceException of ServiceException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Timestamp of LastUpdatedDateTime.t ]) list ] list | `String of NextToken.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