Module Values.LatestMpaApprovalTeamUpdateSource

Contains information about the latest update to an MPA approval team association.

Sourcetype nonrec t = {
  1. mpaSessionArn : ARN.t option;
    (*

    The ARN of the MPA session associated with this update.

    *)
  2. status : MpaSessionStatus.t option;
    (*

    The current status of the MPA approval team update.

    *)
  3. statusMessage : string option;
    (*

    A message describing the current status of the MPA approval team update.

    *)
  4. initiationDate : string option;
    (*

    The date and time when the MPA approval team update was initiated.

    *)
  5. expiryDate : string option;
    (*

    The date and time when the MPA approval team update will expire.

    *)
}
Sourceval make : ?mpaSessionArn:??? -> ?status:??? -> ?statusMessage:??? -> ?initiationDate:??? -> ?expiryDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ARN.t | `Timestamp of string ]) 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