Module Values.BucketBundleSource

Describes the specifications of a bundle that can be applied to an Amazon Lightsail bucket. A bucket bundle specifies the monthly cost, storage space, and data transfer quota for a bucket.

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

    The ID of the bundle.

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

    The name of the bundle.

    *)
  3. price : Float_.t option;
    (*

    The monthly price of the bundle, in US dollars.

    *)
  4. storagePerMonthInGb : Integer.t option;
    (*

    The storage size of the bundle, in GB.

    *)
  5. transferPerMonthInGb : Integer.t option;
    (*

    The monthly network transfer quota of the bundle.

    *)
  6. isActive : Boolean.t option;
    (*

    Indicates whether the bundle is active. Use for a new or existing bucket.

    *)
}
Sourceval make : ?bundleId:??? -> ?name:??? -> ?price:??? -> ?storagePerMonthInGb:??? -> ?transferPerMonthInGb:??? -> ?isActive:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Float of Float_.t | `Integer of Integer.t | `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