pub struct UpdateFileSystemRequest {
pub file_system_id: String,
pub provisioned_throughput_in_mibps: Option<f64>,
pub throughput_mode: Option<String>,
}
Fields§
§file_system_id: String
The ID of the file system that you want to update.
provisioned_throughput_in_mibps: Option<f64>
(Optional) Sets the amount of provisioned throughput, in MiB/s, for the file system. Valid values are 1-1024. If you are changing the throughput mode to provisioned, you must also provide the amount of provisioned throughput. Required if ThroughputMode
is changed to provisioned
on update.
throughput_mode: Option<String>
(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
.
Trait Implementations§
Source§impl Clone for UpdateFileSystemRequest
impl Clone for UpdateFileSystemRequest
Source§fn clone(&self) -> UpdateFileSystemRequest
fn clone(&self) -> UpdateFileSystemRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateFileSystemRequest
impl Debug for UpdateFileSystemRequest
Source§impl Default for UpdateFileSystemRequest
impl Default for UpdateFileSystemRequest
Source§fn default() -> UpdateFileSystemRequest
fn default() -> UpdateFileSystemRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateFileSystemRequest
impl PartialEq for UpdateFileSystemRequest
Source§impl Serialize for UpdateFileSystemRequest
impl Serialize for UpdateFileSystemRequest
impl StructuralPartialEq for UpdateFileSystemRequest
Auto Trait Implementations§
impl Freeze for UpdateFileSystemRequest
impl RefUnwindSafe for UpdateFileSystemRequest
impl Send for UpdateFileSystemRequest
impl Sync for UpdateFileSystemRequest
impl Unpin for UpdateFileSystemRequest
impl UnwindSafe for UpdateFileSystemRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more