Module Values.PositionSource

Contains the row and column of a location of a Statement element in a policy document. This data type is used as a member of the Statement type.

Sourcetype nonrec t = {
  1. line : LineNumber.t option;
    (*

    The line containing the specified position in the document.

    *)
  2. column : ColumnNumber.t option;
    (*

    The column in the line containing the specified position in the document.

    *)
}
Sourceval make : ?line:??? -> ?column:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LineNumber.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