Module Values.SubjectSummarySource

A summary representation of subjects.

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

    The ARN of the resource.

    *)
  2. subjectId : Uuid.t option;
    (*

    The id of the resource.

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

    The enabled status of the subject.

    *)
  4. x509Subject : String_.t option;
    (*

    The x509 principal identifier of the authenticating certificate.

    *)
  5. lastSeenAt : SyntheticTimestamp_date_time.t option;
    (*

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

    *)
  6. createdAt : SyntheticTimestamp_date_time.t option;
    (*

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

    *)
  7. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 timestamp when the subject was last updated.

    *)
}
Sourceval make : ?subjectArn:??? -> ?subjectId:??? -> ?enabled:??? -> ?x509Subject:??? -> ?lastSeenAt:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `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