Module Values.IdentitySource

Contains details about the type of identity that made the request.

Sourcetype nonrec t = {
  1. principalId : String_.t option;
    (*

    A unique identifier for the entity that made the call. For Time To Live, the principalId is "dynamodb.amazonaws.com".

    *)
  2. type_ : String_.t option;
    (*

    The type of the identity. For Time To Live, the type is "Service".

    *)
}
Sourceval make : ?principalId:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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