Module Values.GetBackupSelectionOutputSource

Returns selection metadata and a document in JSON format that specifies a list of resources that are associated with a backup plan.

Sourcetype nonrec t = {
  1. backupSelection : BackupSelection.t option;
    (*

    Specifies the body of a request to assign a set of resources to a backup plan.

    *)
  2. selectionId : string option;
    (*

    Uniquely identifies the body of a request to assign a set of resources to a backup plan.

    *)
  3. backupPlanId : string option;
    (*

    Uniquely identifies a backup plan.

    *)
  4. creationDate : string option;
    (*

    The date and time a backup selection is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  5. creatorRequestId : string option;
    (*

    A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.

    *)
}
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 : ?backupSelection:??? -> ?selectionId:??? -> ?backupPlanId:??? -> ?creationDate:??? -> ?creatorRequestId:??? -> 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 * [> `String of string | `Structure of (string * [> `List of [> `String of ARN.t | `Structure of (string * [> `Enum of string | `String of ConditionKey.t ]) list ] list | `String of BackupSelectionName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ConditionKey.t ]) list ] list ]) 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