Module Values.AuthenticationMethodItemSource

A structure that describes an authentication method and its type.

Sourcetype nonrec t = {
  1. authenticationMethodType : AuthenticationMethodType.t option;
    (*

    The type of authentication that is used by this method.

    *)
  2. authenticationMethod : AuthenticationMethod.t option;
    (*

    A structure that describes an authentication method. The contents of this structure is determined by the AuthenticationMethodType.

    *)
}
Sourceval make : ?authenticationMethodType:??? -> ?authenticationMethod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `Structure of 'a list ]) list ]) list ]) 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