Module Values.KxUserSource

A structure that stores metadata for a kdb user.

Sourcetype nonrec t = {
  1. userArn : KxUserArn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see IAM Identifiers in the IAM User Guide.

    *)
  2. userName : KxUserNameString.t option;
    (*

    A unique identifier for the user.

    *)
  3. iamRole : RoleArn.t option;
    (*

    The IAM role ARN that is associated with the user.

    *)
  4. createTimestamp : Timestamp.t option;
    (*

    The timestamp at which the kdb user was created.

    *)
  5. updateTimestamp : Timestamp.t option;
    (*

    The timestamp at which the kdb user was updated.

    *)
}
Sourceval make : ?userArn:??? -> ?userName:??? -> ?iamRole:??? -> ?createTimestamp:??? -> ?updateTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KxUserArn.t | `Timestamp of Timestamp.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