Module Values.DescribeClientAuthenticationSettingsRequestSource

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. directoryId : DirectoryId.t;
    (*

    The identifier of the directory for which to retrieve information.

    *)
  2. 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.

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

    The DescribeClientAuthenticationSettingsResult.NextToken value from a previous call to DescribeClientAuthenticationSettings. Pass null if this is the first call.

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> ?nextToken:??? -> ?limit:??? -> directoryId:DirectoryId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PageLimit.t | `String of DirectoryId.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