Module Values.UpdateStorageRequestSource

Request object for UpdateStorage api. Its used to update the storage attributes for the cluster.

Sourcetype nonrec t = {
  1. clusterArn : string;
    (*

    The Amazon Resource Name (ARN) of the cluster to be updated.

    *)
  2. currentVersion : string;
    (*

    The version of cluster to update from. A successful operation will then generate a new version.

    *)
  3. provisionedThroughput : ProvisionedThroughput.t option;
    (*

    EBS volume provisioned throughput information.

    *)
  4. storageMode : StorageMode.t option;
    (*

    Controls storage mode for supported storage tiers.

    *)
  5. volumeSizeGB : int option;
    (*

    size of the EBS volume to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?provisionedThroughput:??? -> ?storageMode:??? -> ?volumeSizeGB:??? -> clusterArn:string -> currentVersion:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Boolean of bool | `Integer of int ]) list ]) 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