Module Values.AwsBackupBackupPlanAdvancedBackupSettingsDetailsSource

Provides a list of backup options for each resource type.

Sourcetype nonrec t = {
  1. backupOptions : FieldMap.t option;
    (*

    Specifies the backup option for a selected resource. This option is only available for Windows Volume Shadow Copy Service (VSS) backup jobs. Valid values are as follows: Set to WindowsVSS: enabled to enable the WindowsVSS backup option and create a Windows VSS backup. Set to WindowsVSS: disabled to create a regular backup. The WindowsVSS option is not enabled by default.

    *)
  2. resourceType : NonEmptyString.t option;
    (*

    The name of a resource type. The only supported resource type is Amazon EC2 instances with Windows VSS. The only valid value is EC2.

    *)
}
Sourceval make : ?backupOptions:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of NonEmptyString.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