Module Values.CancelLegalHoldInputSource

Removes the specified legal hold on a recovery point. This action can only be performed by a user with sufficient permissions.

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

    The ID of the legal hold.

    *)
  2. cancelDescription : string;
    (*

    A string the describes the reason for removing the legal hold.

    *)
  3. retainRecordInDays : Long.t option;
    (*

    The integer amount, in days, after which to remove legal hold.

    *)
}
Sourceval context_ : string
Sourceval make : ?retainRecordInDays:??? -> legalHoldId:string -> cancelDescription:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String 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