Module Values.UpdateBackupPlanOutputSource

Updates the specified backup plan. The new version is uniquely identified by its ID.

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

    Uniquely identifies a backup plan.

    *)
  2. backupPlanArn : ARN.t option;
    (*

    An Amazon Resource Name (ARN) that uniquely identifies a backup plan; for example, arn:aws:backup:us-east-1:123456789012:plan:8F81F553-3A74-4A3F-B93D-B3360DC80C50.

    *)
  3. creationDate : string option;
    (*

    The date and time a backup plan 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.

    *)
  4. versionId : string option;
    (*

    Unique, randomly generated, Unicode, UTF-8 encoded strings that are at most 1,024 bytes long. Version Ids cannot be edited.

    *)
  5. advancedBackupSettings : AdvancedBackupSettings.t option;
    (*

    Contains a list of BackupOptions for each resource type.

    *)
  6. scanSettings : ScanSettings.t option;
    (*

    Contains your scanning configuration for the backup plan and includes the Malware scanner, your selected resources, and scanner role.

    *)
}
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 : ?backupPlanId:??? -> ?backupPlanArn:??? -> ?creationDate:??? -> ?versionId:??? -> ?advancedBackupSettings:??? -> ?scanSettings:??? -> 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 * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of ResourceType.t ] list | `Map of ([> `String of BackupOptionKey.t ] * [> `String of BackupOptionValue.t ]) list | `String of ResourceType.t ]) list ] list | `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