Module Values.BackupPlanSource

Contains an optional backup plan display name and an array of BackupRule objects, each of which specifies a backup rule. Each rule in a backup plan is a separate scheduled task and can back up a different selection of Amazon Web Services resources.

Sourcetype nonrec t = {
  1. backupPlanName : BackupPlanName.t option;
    (*

    The display name of a backup plan. Must contain only alphanumeric or '-_.' special characters. If this is set in the console, it can contain 1 to 50 characters; if this is set through CLI or API, it can contain 1 to 200 characters.

    *)
  2. rules : BackupRules.t option;
    (*

    An array of BackupRule objects, each of which specifies a scheduled task that is used to back up a selection of resources.

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

    Contains a list of BackupOptions for each resource type.

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

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

    *)
}
Sourceval make : ?backupPlanName:??? -> ?rules:??? -> ?advancedBackupSettings:??? -> ?scanSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of ResourceType.t | `Structure of (string * [> `Enum of string | `List of [> `String of ResourceType.t ] list | `String of ARN.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of Long.t ]) list ]) list ] list | `Long of WindowMinutes.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of BackupRuleName.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of Long.t ]) list ]) list ] list | `String of BackupPlanName.t ]) 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