Module Values.LatestRevokeRequestSource

Contains information about the latest request to revoke access to a backup vault.

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

    The ARN of the MPA session associated with this revoke request.

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

    The current status of the revoke request.

    *)
  3. statusMessage : string option;
    (*

    A message describing the current status of the revoke request.

    *)
  4. initiationDate : string option;
    (*

    The date and time when the revoke request was initiated.

    *)
  5. expiryDate : string option;
    (*

    The date and time when the revoke request will expire.

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