Values.DescribeClientAuthenticationSettingsRequestSourceRetrieves 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.
type nonrec t = {directoryId : DirectoryId.t;The identifier of the directory for which to retrieve information.
*)type_ : ClientAuthenticationType.t option;The type of client authentication for which to retrieve information. If no type is specified, a list of all client authentication types that are supported for the specified directory is retrieved.
*)nextToken : NextToken.t option;The DescribeClientAuthenticationSettingsResult.NextToken value from a previous call to DescribeClientAuthenticationSettings. Pass null if this is the first call.
*)limit : PageLimit.t option;The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.
*)}val make :
?type_:??? ->
?nextToken:??? ->
?limit:??? ->
directoryId:DirectoryId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of PageLimit.t
| `String of DirectoryId.t ])
list ]