Module Values.CreateBackupSelectionOutputSource

Creates a JSON document that specifies a set of resources to assign to a backup plan. For examples, see Assigning resources programmatically.

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

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

    *)
  2. backupPlanId : string option;
    (*

    The ID of the backup plan.

    *)
  3. 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.

    *)
}
Sourcetype nonrec error = [
  1. | `AlreadyExistsException of AlreadyExistsException.t
  2. | `InvalidParameterValueException of InvalidParameterValueException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `MissingParameterValueException of MissingParameterValueException.t
  5. | `ServiceUnavailableException of ServiceUnavailableException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?selectionId:??? -> ?backupPlanId:??? -> ?creationDate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AlreadyExistsException of AlreadyExistsException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `LimitExceededException of LimitExceededException.t | `MissingParameterValueException of MissingParameterValueException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AlreadyExistsException of AlreadyExistsException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `LimitExceededException of LimitExceededException.t | `MissingParameterValueException of MissingParameterValueException.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 | `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