Module Values.UpdateFileSystemRequestSource

Updates the throughput mode or the amount of provisioned throughput of an existing file system.

Sourcetype nonrec t = {
  1. fileSystemId : FileSystemId.t;
    (*

    The ID of the file system that you want to update.

    *)
  2. throughputMode : ThroughputMode.t option;
    (*

    (Optional) Updates the file system's throughput mode. If you're not updating your throughput mode, you don't need to provide this value in your request. If you are changing the ThroughputMode to provisioned, you must also set a value for ProvisionedThroughputInMibps.

    *)
  3. provisionedThroughputInMibps : ProvisionedThroughputInMibps.t option;
    (*

    (Optional) The throughput, measured in mebibytes per second (MiBps), that you want to provision for a file system that you're creating. Required if ThroughputMode is set to provisioned. Valid values are 1-3414 MiBps, with the upper limit depending on Region. To increase this limit, contact Amazon Web ServicesSupport. For more information, see Amazon EFS quotas that you can increase in the Amazon EFS User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?throughputMode:??? -> ?provisionedThroughputInMibps:??? -> fileSystemId:FileSystemId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of ProvisionedThroughputInMibps.t | `Enum of string | `String of FileSystemId.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