Module Values.AwsBackupRecoveryPointCalculatedLifecycleDetailsSource

Specifies how long in days before a recovery point transitions to cold storage or is deleted.

Sourcetype nonrec t = {
  1. deleteAt : NonEmptyString.t option;
    (*

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

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

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

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