Module Values.GetLegalHoldOutputSource

This action returns details for a specified legal hold. The details are the body of a legal hold in JSON format, in addition to metadata.

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

    The title of the legal hold.

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

    The status of the legal hold.

    *)
  3. description : string option;
    (*

    The description of the legal hold.

    *)
  4. cancelDescription : string option;
    (*

    The reason for removing the legal hold.

    *)
  5. legalHoldId : string option;
    (*

    The ID of the legal hold.

    *)
  6. legalHoldArn : ARN.t option;
    (*

    The framework ARN for the specified legal hold. The format of the ARN depends on the resource type.

    *)
  7. creationDate : string option;
    (*

    The time when the legal hold was created.

    *)
  8. cancellationDate : string option;
    (*

    The time when the legal hold was cancelled.

    *)
  9. retainRecordUntil : string option;
    (*

    The date and time until which the legal hold record is retained.

    *)
  10. recoveryPointSelection : RecoveryPointSelection.t option;
    (*

    The criteria to assign a set of resources, such as resource types or backup vaults.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterValueException of InvalidParameterValueException.t
  2. | `MissingParameterValueException of MissingParameterValueException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceUnavailableException of ServiceUnavailableException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?title:??? -> ?status:??? -> ?description:??? -> ?cancelDescription:??? -> ?legalHoldId:??? -> ?legalHoldArn:??? -> ?creationDate:??? -> ?cancellationDate:??? -> ?retainRecordUntil:??? -> ?recoveryPointSelection:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `MissingParameterValueException of MissingParameterValueException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `MissingParameterValueException of MissingParameterValueException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `List of [> `String of string ] list | `Structure of (string * [> `Timestamp of string ]) list ]) list | `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