Module Values.NoncurrentVersionTransitionSource

The container for the noncurrent version transition.

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 How Long an Object Has Been Noncurrent in the Amazon S3 User Guide.

    *)
  2. storageClass : TransitionStorageClass.t option;
    (*

    The class of storage used to store the object.

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