Module Values.InstancePropertySource

A key-value pair you set that identifies a property of the authenticating instance.

Sourcetype nonrec t = {
  1. seenAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.

    *)
  2. properties : InstancePropertyMap.t option;
    (*

    A list of instanceProperty objects.

    *)
  3. failed : Boolean.t option;
    (*

    Indicates whether the temporary credential request was successful.

    *)
}
Sourceval make : ?seenAt:??? -> ?properties:??? -> ?failed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of InstancePropertyMapKeyString.t ] * [> `String of InstancePropertyMapValueString.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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