Module Values_2.UserIdentifierSource

A structure that contains information to identify a user.

Sourcetype nonrec t = {
  1. userName : Values_0.SensitiveString.t option;
    (*

    The name of the user that you want to get identity context for.

    *)
  2. email : Values_0.SensitiveString.t option;
    (*

    The email address of the user that you want to get identity context for.

    *)
  3. userArn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the user that you want to get identity context for.

    *)
}
Sourceval make : ?userName:??? -> ?email:??? -> ?userArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.SensitiveString.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