Module Values.NoncurrentVersionExpirationSource

The container of the noncurrent version expiration.

Sourcetype nonrec t = {
  1. noncurrentDays : Days.t option;
    (*

    Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon S3 User Guide.

    *)
  2. newerNoncurrentVersions : NoncurrentVersionCount.t option;
    (*

    Specifies how many noncurrent versions S3 on Outposts will retain. If there are this many more recent noncurrent versions, S3 on Outposts will take the associated action. For more information about noncurrent versions, see Lifecycle configuration elements in the Amazon S3 User Guide.

    *)
}
Sourceval make : ?noncurrentDays:??? -> ?newerNoncurrentVersions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Days.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