Module Values.AwsBackupBackupPlanLifecycleDetailsSource

Provides lifecycle details for the backup plan. A lifecycle defines when a backup is transitioned to cold storage and when it expires.

Sourcetype nonrec t = {
  1. deleteAfterDays : Long.t option;
    (*

    Specifies the number of days after creation that a recovery point is deleted. Must be greater than 90 days plus MoveToColdStorageAfterDays.

    *)
  2. moveToColdStorageAfterDays : Long.t option;
    (*

    Specifies the number of days after creation that a recovery point is moved to cold storage.

    *)
}
Sourceval make : ?deleteAfterDays:??? -> ?moveToColdStorageAfterDays:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.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